Home
last modified time | relevance | path

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

/Linux-v4.19/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.c118 unsigned long mapped_blocks; in __fat_get_block() local
122 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false); in __fat_get_block()
127 *max_blocks = min(mapped_blocks, *max_blocks); in __fat_get_block()
153 mapped_blocks = sbi->sec_per_clus - offset; in __fat_get_block()
155 *max_blocks = min(mapped_blocks, *max_blocks); in __fat_get_block()
158 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false); in __fat_get_block()
169 BUG_ON(*max_blocks != mapped_blocks); in __fat_get_block()
296 unsigned long mapped_blocks; in fat_get_block_bmap() local
300 err = fat_bmap(inode, iblock, &bmap, &mapped_blocks, create, true); in fat_get_block_bmap()
306 max_blocks = min(mapped_blocks, max_blocks); in fat_get_block_bmap()
Dfat.h291 unsigned long *mapped_blocks, sector_t *bmap);
293 unsigned long *mapped_blocks, int create, bool from_bmap);
Ddir.c86 unsigned long mapped_blocks; in fat__get_entry() local
95 err = fat_bmap(dir, iblock, &phys, &mapped_blocks, 0, false); in fat__get_entry()
/Linux-v4.19/drivers/md/
Ddm-thin-metadata.c139 __le64 mapped_blocks; member
220 uint64_t mapped_blocks; member
760 details.mapped_blocks = cpu_to_le64(td->mapped_blocks); in __write_changed_details()
957 details_le.mapped_blocks = 0; in __open_device()
972 (*td)->mapped_blocks = le64_to_cpu(details_le.mapped_blocks); in __open_device()
1057 snap->mapped_blocks = td->mapped_blocks; in __set_snapshot_details()
1563 td->mapped_blocks++; in __insert()
1591 td->mapped_blocks--; in __remove()
1645 td->mapped_blocks -= total_count; in __remove_range()
1889 *result = td->mapped_blocks; in dm_thin_get_mapped_count()