Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/fs/fat/
Dcache.c312 unsigned long *mapped_blocks, sector_t *bmap) in fat_get_mapped_cluster() argument
325 *mapped_blocks = sbi->sec_per_clus - offset; in fat_get_mapped_cluster()
326 if (*mapped_blocks > last_block - sector) in fat_get_mapped_cluster()
327 *mapped_blocks = last_block - sector; in fat_get_mapped_cluster()
359 unsigned long *mapped_blocks, int create, bool from_bmap) in fat_bmap() argument
365 *mapped_blocks = 0; in fat_bmap()
369 *mapped_blocks = 1; in fat_bmap()
384 return fat_get_mapped_cluster(inode, sector, last_block, mapped_blocks, in fat_bmap()
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()
302 unsigned long mapped_blocks; in fat_get_block_bmap() local
306 err = fat_bmap(inode, iblock, &bmap, &mapped_blocks, create, true); in fat_get_block_bmap()
312 max_blocks = min(mapped_blocks, max_blocks); in fat_get_block_bmap()
Dfat.h319 unsigned long *mapped_blocks, sector_t *bmap);
321 unsigned long *mapped_blocks, int create, bool from_bmap);
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()
/kernel/linux/linux-5.10/drivers/md/
Ddm-thin-metadata.c139 __le64 mapped_blocks; member
236 uint64_t mapped_blocks; member
816 details.mapped_blocks = cpu_to_le64(td->mapped_blocks); in __write_changed_details()
1029 details_le.mapped_blocks = 0; in __open_device()
1044 (*td)->mapped_blocks = le64_to_cpu(details_le.mapped_blocks); in __open_device()
1128 snap->mapped_blocks = td->mapped_blocks; in __set_snapshot_details()
1638 td->mapped_blocks++; in __insert()
1666 td->mapped_blocks--; in __remove()
1720 td->mapped_blocks -= total_count; in __remove_range()
2001 *result = td->mapped_blocks; in dm_thin_get_mapped_count()
/kernel/linux/linux-5.10/fs/exfat/
Dinode.c297 unsigned long mapped_blocks = 0; in exfat_get_block() local
326 mapped_blocks = sbi->sect_per_clus - sec_offset; in exfat_get_block()
327 max_blocks = min(mapped_blocks, max_blocks); in exfat_get_block()