Lines Matching refs:blocksize
167 u32 blocksize; in hfsplus_read_wrapper() local
171 blocksize = sb_min_blocksize(sb, HFSPLUS_SECTOR_SIZE); in hfsplus_read_wrapper()
172 if (!blocksize) in hfsplus_read_wrapper()
231 blocksize = be32_to_cpu(sbi->s_vhdr->blocksize); in hfsplus_read_wrapper()
236 if (blocksize < HFSPLUS_SECTOR_SIZE || ((blocksize - 1) & blocksize)) in hfsplus_read_wrapper()
238 sbi->alloc_blksz = blocksize; in hfsplus_read_wrapper()
239 sbi->alloc_blksz_shift = ilog2(blocksize); in hfsplus_read_wrapper()
240 blocksize = min_t(u32, sbi->alloc_blksz, PAGE_SIZE); in hfsplus_read_wrapper()
245 while (part_start & ((blocksize >> HFSPLUS_SECTOR_SHIFT) - 1)) in hfsplus_read_wrapper()
246 blocksize >>= 1; in hfsplus_read_wrapper()
248 if (sb_set_blocksize(sb, blocksize) != blocksize) { in hfsplus_read_wrapper()
249 pr_err("unable to set blocksize to %u!\n", blocksize); in hfsplus_read_wrapper()