Home
last modified time | relevance | path

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

/linux-4.19.296/fs/fat/
Dcache.c80 static int fat_cache_lookup(struct inode *inode, int fclus, in fat_cache_lookup() argument
92 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) { in fat_cache_lookup()
94 if ((hit->fcluster + hit->nr_contig) < fclus) { in fat_cache_lookup()
97 offset = fclus - hit->fcluster; in fat_cache_lookup()
217 static inline void cache_init(struct fat_cache_id *cid, int fclus, int dclus) in cache_init() argument
220 cid->fcluster = fclus; in cache_init()
225 int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus) in fat_get_cluster() argument
236 *fclus = 0; in fat_get_cluster()
247 if (fat_cache_lookup(inode, cluster, &cid, fclus, dclus) < 0) { in fat_get_cluster()
256 while (*fclus < cluster) { in fat_get_cluster()
[all …]
Dmisc.c111 int fclus, dclus; in fat_chain_add() local
113 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus); in fat_chain_add()
116 new_fclus = fclus + 1; in fat_chain_add()
Dfile.c352 int ret, fclus, dclus; in fat_free() local
354 ret = fat_get_cluster(inode, skip - 1, &fclus, &dclus); in fat_free()
Dfat.h288 int *fclus, int *dclus);
Dinode.c476 int ret, fclus, dclus; in fat_calc_dir_size() local
482 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus); in fat_calc_dir_size()
485 inode->i_size = (fclus + 1) << sbi->cluster_bits; in fat_calc_dir_size()