Home
last modified time | relevance | path

Searched refs:mapped_blocks (Results 1 – 6 of 6) sorted by relevance

/linux/fs/fat/
H A Dcache.c307 unsigned long *mapped_blocks, sector_t *bmap) in fat_get_mapped_cluster() argument
320 *mapped_blocks = sbi->sec_per_clus - offset; in fat_get_mapped_cluster()
321 if (*mapped_blocks > last_block - sector) in fat_get_mapped_cluster()
322 *mapped_blocks = last_block - sector; in fat_get_mapped_cluster()
354 unsigned long *mapped_blocks, int create, bool from_bmap) in fat_bmap() argument
360 *mapped_blocks = 0; in fat_bmap()
364 *mapped_blocks = 1; in fat_bmap()
379 return fat_get_mapped_cluster(inode, sector, last_block, mapped_blocks, in fat_bmap()
H A Dinode.c125 unsigned long mapped_blocks; in __fat_get_block() local
129 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false); in __fat_get_block()
134 *max_blocks = min(mapped_blocks, *max_blocks); in __fat_get_block()
160 mapped_blocks = sbi->sec_per_clus - offset; in __fat_get_block()
162 *max_blocks = min(mapped_blocks, *max_blocks); in __fat_get_block()
165 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false); in __fat_get_block()
176 BUG_ON(*max_blocks != mapped_blocks); in __fat_get_block()
298 unsigned long mapped_blocks; in fat_get_block_bmap() local
302 err = fat_bmap(inode, iblock, &bmap, &mapped_blocks, create, true); in fat_get_block_bmap()
308 max_blocks = min(mapped_blocks, max_blocks); in fat_get_block_bmap()
H A Dfat.h323 unsigned long *mapped_blocks, sector_t *bmap);
325 unsigned long *mapped_blocks, int create, bool from_bmap);
H A Ddir.c87 unsigned long mapped_blocks; in fat__get_entry() local
94 err = fat_bmap(dir, iblock, &phys, &mapped_blocks, 0, false); in fat__get_entry()
/linux/drivers/md/
H A Ddm-thin-metadata.c142 __le64 mapped_blocks; member
239 uint64_t mapped_blocks; member
862 details.mapped_blocks = cpu_to_le64(td->mapped_blocks); in __write_changed_details()
1074 details_le.mapped_blocks = 0; in __open_device()
1089 (*td)->mapped_blocks = le64_to_cpu(details_le.mapped_blocks); in __open_device()
1173 snap->mapped_blocks = td->mapped_blocks; in __set_snapshot_details()
1683 td->mapped_blocks++; in __insert()
1749 td->mapped_blocks -= total_count; in __remove_range()
1990 *result = td->mapped_blocks; in dm_thin_get_mapped_count()
/linux/fs/exfat/
H A Dinode.c272 unsigned long mapped_blocks = 0; in exfat_get_block() local
303 mapped_blocks = sbi->sect_per_clus - sec_offset; in exfat_get_block()
304 max_blocks = min(mapped_blocks, max_blocks); in exfat_get_block()