fclus              80 fs/fat/cache.c static int fat_cache_lookup(struct inode *inode, int fclus,
fclus              92 fs/fat/cache.c 		if (p->fcluster <= fclus && hit->fcluster < p->fcluster) {
fclus              94 fs/fat/cache.c 			if ((hit->fcluster + hit->nr_contig) < fclus) {
fclus              97 fs/fat/cache.c 				offset = fclus - hit->fcluster;
fclus             217 fs/fat/cache.c static inline void cache_init(struct fat_cache_id *cid, int fclus, int dclus)
fclus             220 fs/fat/cache.c 	cid->fcluster = fclus;
fclus             225 fs/fat/cache.c int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus)
fclus             236 fs/fat/cache.c 	*fclus = 0;
fclus             247 fs/fat/cache.c 	if (fat_cache_lookup(inode, cluster, &cid, fclus, dclus) < 0) {
fclus             256 fs/fat/cache.c 	while (*fclus < cluster) {
fclus             258 fs/fat/cache.c 		if (*fclus > limit) {
fclus             279 fs/fat/cache.c 		(*fclus)++;
fclus             282 fs/fat/cache.c 			cache_init(&cid, *fclus, *dclus);
fclus             294 fs/fat/cache.c 	int ret, fclus, dclus;
fclus             299 fs/fat/cache.c 	ret = fat_get_cluster(inode, cluster, &fclus, &dclus);
fclus             316 fs/fat/fat.h   			   int *fclus, int *dclus);
fclus             354 fs/fat/file.c  		int ret, fclus, dclus;
fclus             356 fs/fat/file.c  		ret = fat_get_cluster(inode, skip - 1, &fclus, &dclus);
fclus             482 fs/fat/inode.c 	int ret, fclus, dclus;
fclus             488 fs/fat/inode.c 	ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
fclus             491 fs/fat/inode.c 	inode->i_size = (fclus + 1) << sbi->cluster_bits;
fclus             113 fs/fat/misc.c  		int fclus, dclus;
fclus             115 fs/fat/misc.c  		ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
fclus             118 fs/fat/misc.c  		new_fclus = fclus + 1;