Home | History | Annotate | Download | only in ext2fs

Lines Matching refs:cluster_ratio_bits

244 	int				cluster_ratio_bits;
628 #define EXT2FS_CLUSTER_RATIO(fs) (1 << (fs)->cluster_ratio_bits)
630 #define EXT2FS_B2C(fs, blk) ((blk) >> (fs)->cluster_ratio_bits)
632 #define EXT2FS_C2B(fs, cluster) ((cluster) << (fs)->cluster_ratio_bits)
635 (fs)->cluster_ratio_bits)