Lines Matching refs:iblock
264 static int exfat_get_block(struct inode *inode, sector_t iblock, in exfat_get_block() argument
280 if (iblock >= last_block && !create) in exfat_get_block()
284 err = exfat_map_cluster(inode, iblock >> sbi->sect_per_clus_bits, in exfat_get_block()
290 inode, (unsigned long long)iblock, err); in exfat_get_block()
298 sec_offset = iblock & (sbi->sect_per_clus - 1); in exfat_get_block()
311 if (iblock + max_blocks < valid_blks) { in exfat_get_block()
314 } else if (iblock < valid_blks) { in exfat_get_block()
319 max_blocks = valid_blks - iblock; in exfat_get_block()
326 ei->valid_size = EXFAT_BLK_TO_B(iblock + max_blocks, sb); in exfat_get_block()
331 if (iblock + max_blocks < valid_blks) { in exfat_get_block()
334 } else if (iblock < valid_blks) { in exfat_get_block()
339 max_blocks = valid_blks - iblock; in exfat_get_block()
341 } else if (iblock == valid_blks && in exfat_get_block()
358 pos = EXFAT_BLK_TO_B(iblock, sb); in exfat_get_block()