Lines Matching refs:hit
85 struct fat_cache *hit = &nohit, *p; in fat_cache_lookup() local
91 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) { in fat_cache_lookup()
92 hit = p; in fat_cache_lookup()
93 if ((hit->fcluster + hit->nr_contig) < fclus) { in fat_cache_lookup()
94 offset = hit->nr_contig; in fat_cache_lookup()
96 offset = fclus - hit->fcluster; in fat_cache_lookup()
101 if (hit != &nohit) { in fat_cache_lookup()
102 fat_cache_update_lru(inode, hit); in fat_cache_lookup()
105 cid->nr_contig = hit->nr_contig; in fat_cache_lookup()
106 cid->fcluster = hit->fcluster; in fat_cache_lookup()
107 cid->dcluster = hit->dcluster; in fat_cache_lookup()