Home | History | Annotate | Download | only in ext2fs

Lines Matching refs:cluster_ratio_bits

239 	int				cluster_ratio_bits;
610 #define EXT2FS_CLUSTER_RATIO(fs) (1 << (fs)->cluster_ratio_bits)
612 #define EXT2FS_B2C(fs, blk) ((blk) >> (fs)->cluster_ratio_bits)
614 #define EXT2FS_C2B(fs, cluster) ((cluster) << (fs)->cluster_ratio_bits)
617 (fs)->cluster_ratio_bits)