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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/fat/
H A Dcache.c81 static int fat_cache_lookup(struct inode *inode, int fclus, argument
92 /* Find the cache of "fclus" or nearest cache. */
93 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) {
95 if ((hit->fcluster + hit->nr_contig) < fclus) {
98 offset = fclus - hit->fcluster;
210 static inline void cache_init(struct fat_cache_id *cid, int fclus, int dclus) argument
213 cid->fcluster = fclus;
218 int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus) argument
228 *fclus = 0;
233 if (fat_cache_lookup(inode, cluster, &cid, fclus, dclu
281 int ret, fclus, dclus; local
[all...]
H A Dmisc.c99 int fclus, dclus; local
101 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
104 new_fclus = fclus + 1;
H A Dfile.c251 int ret, fclus, dclus; local
253 ret = fat_get_cluster(inode, skip - 1, &fclus, &dclus);
H A Dfat.h235 int *fclus, int *dclus);
H A Dinode.c331 int ret, fclus, dclus; local
337 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
340 inode->i_size = (fclus + 1) << sbi->cluster_bits;

Completed in 41 milliseconds