Lines Matching refs:blocksize
890 int blocksize = BLOCK_SIZE; in ext2_fill_super() local
921 blocksize = sb_min_blocksize(sb, BLOCK_SIZE); in ext2_fill_super()
922 if (!blocksize) { in ext2_fill_super()
931 if (blocksize != BLOCK_SIZE) { in ext2_fill_super()
932 logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize; in ext2_fill_super()
933 offset = (sb_block*BLOCK_SIZE) % blocksize; in ext2_fill_super()
992 blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size); in ext2_fill_super()
999 } else if (blocksize != PAGE_SIZE) { in ext2_fill_super()
1006 if (sb->s_blocksize != blocksize) { in ext2_fill_super()
1009 if (!sb_set_blocksize(sb, blocksize)) { in ext2_fill_super()
1011 "error: bad blocksize %d", blocksize); in ext2_fill_super()
1015 logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize; in ext2_fill_super()
1016 offset = (sb_block*BLOCK_SIZE) % blocksize; in ext2_fill_super()
1044 (sbi->s_inode_size > blocksize)) { in ext2_fill_super()