Lines Matching refs:hit
81 struct fat_cache *hit = &nohit, *p; in fat_cache_lookup() local
87 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) { in fat_cache_lookup()
88 hit = p; in fat_cache_lookup()
89 if ((hit->fcluster + hit->nr_contig) < fclus) { in fat_cache_lookup()
90 offset = hit->nr_contig; in fat_cache_lookup()
92 offset = fclus - hit->fcluster; in fat_cache_lookup()
97 if (hit != &nohit) { in fat_cache_lookup()
98 fat_cache_update_lru(inode, hit); in fat_cache_lookup()
101 cid->nr_contig = hit->nr_contig; in fat_cache_lookup()
102 cid->fcluster = hit->fcluster; in fat_cache_lookup()
103 cid->dcluster = hit->dcluster; in fat_cache_lookup()