Searched refs:fat_cache (Results 1 – 2 of 2) sorted by relevance
24 static struct fat_cache *fat_cache,cache[FAT_CACHE]; variable145 fat_cache = &cache[0]; in fat_cache_init()158 struct fat_cache *walk; in fat_cache_lookup()164 for (walk = fat_cache; walk; walk = walk->next) in fat_cache_lookup()188 struct fat_cache *walk; in list_cache()190 for (walk = fat_cache; walk; walk = walk->next) { in list_cache()204 struct fat_cache *walk,*last; in fat_cache_add()209 for (walk = fat_cache; walk->next; walk = (last = walk)->next) in fat_cache_add()226 walk->next = fat_cache; in fat_cache_add()227 fat_cache = walk; in fat_cache_add()[all …]
201 struct fat_cache { struct206 struct fat_cache *next; /* next cache entry */ argument