Lines Matching refs:dclus
210 static inline int cache_contiguous(struct fat_cache_id *cid, int dclus) in cache_contiguous() argument
213 return ((cid->dcluster + cid->nr_contig) == dclus); in cache_contiguous()
216 static inline void cache_init(struct fat_cache_id *cid, int fclus, int dclus) in cache_init() argument
220 cid->dcluster = dclus; in cache_init()
224 int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus) in fat_get_cluster() argument
235 *dclus = MSDOS_I(inode)->i_start; in fat_get_cluster()
239 if (fat_cache_lookup(inode, cluster, &cid, fclus, dclus) < 0) { in fat_get_cluster()
259 nr = fat_ent_read(inode, &fatent, *dclus); in fat_get_cluster()
274 *dclus = nr; in fat_get_cluster()
275 if (!cache_contiguous(&cid, *dclus)) in fat_get_cluster()
276 cache_init(&cid, *fclus, *dclus); in fat_get_cluster()
288 int ret, fclus, dclus; in fat_bmap_cluster() local
293 ret = fat_get_cluster(inode, cluster, &fclus, &dclus); in fat_bmap_cluster()
301 return dclus; in fat_bmap_cluster()