Lines Matching refs:blocksize
139 u32 blocksize; in hfsplus_read_wrapper() local
143 blocksize = sb_min_blocksize(sb, HFSPLUS_SECTOR_SIZE); in hfsplus_read_wrapper()
144 if (!blocksize) in hfsplus_read_wrapper()
147 sbi->min_io_size = blocksize; in hfsplus_read_wrapper()
205 blocksize = be32_to_cpu(sbi->s_vhdr->blocksize); in hfsplus_read_wrapper()
210 if (blocksize < HFSPLUS_SECTOR_SIZE || ((blocksize - 1) & blocksize)) in hfsplus_read_wrapper()
212 sbi->alloc_blksz = blocksize; in hfsplus_read_wrapper()
213 sbi->alloc_blksz_shift = ilog2(blocksize); in hfsplus_read_wrapper()
214 blocksize = min_t(u32, sbi->alloc_blksz, PAGE_SIZE); in hfsplus_read_wrapper()
219 while (part_start & ((blocksize >> HFSPLUS_SECTOR_SHIFT) - 1)) in hfsplus_read_wrapper()
220 blocksize >>= 1; in hfsplus_read_wrapper()
222 if (sb_set_blocksize(sb, blocksize) != blocksize) { in hfsplus_read_wrapper()
223 pr_err("unable to set blocksize to %u!\n", blocksize); in hfsplus_read_wrapper()