Home
last modified time | relevance | path

Searched refs:xtag (Results 1 – 1 of 1) sorted by relevance

/linux-4.19.296/fs/fscache/
Dcache.c29 struct fscache_cache_tag *tag, *xtag; in __fscache_lookup_cache_tag() local
45 xtag = kzalloc(sizeof(*xtag) + strlen(name) + 1, GFP_KERNEL); in __fscache_lookup_cache_tag()
46 if (!xtag) in __fscache_lookup_cache_tag()
50 atomic_set(&xtag->usage, 1); in __fscache_lookup_cache_tag()
51 strcpy(xtag->name, name); in __fscache_lookup_cache_tag()
60 kfree(xtag); in __fscache_lookup_cache_tag()
65 list_add_tail(&xtag->link, &fscache_cache_tag_list); in __fscache_lookup_cache_tag()
67 return xtag; in __fscache_lookup_cache_tag()