Lines Matching refs:nfs_access_entry

2314 static void nfs_access_free_entry(struct nfs_access_entry *entry)  in nfs_access_free_entry()
2325 struct nfs_access_entry *cache; in nfs_access_free_list()
2328 cache = list_entry(head->next, struct nfs_access_entry, lru); in nfs_access_free_list()
2339 struct nfs_access_entry *cache; in nfs_do_access_cache_scan()
2353 struct nfs_access_entry, lru); in nfs_do_access_cache_scan()
2412 struct nfs_access_entry *entry; in __nfs_access_zap_cache()
2416 entry = rb_entry(n, struct nfs_access_entry, rb_node); in __nfs_access_zap_cache()
2442 static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, const struct cred *cr… in nfs_access_search_rbtree()
2447 struct nfs_access_entry *entry = in nfs_access_search_rbtree()
2448 rb_entry(n, struct nfs_access_entry, rb_node); in nfs_access_search_rbtree()
2461 …_cached_locked(struct inode *inode, const struct cred *cred, struct nfs_access_entry *res, bool ma… in nfs_access_get_cached_locked()
2464 struct nfs_access_entry *cache; in nfs_access_get_cached_locked()
2504 …s_access_get_cached_rcu(struct inode *inode, const struct cred *cred, struct nfs_access_entry *res) in nfs_access_get_cached_rcu()
2510 struct nfs_access_entry *cache; in nfs_access_get_cached_rcu()
2518 cache = list_entry(lh, struct nfs_access_entry, lru); in nfs_access_get_cached_rcu()
2535 nfs_access_entry *res, bool may_block) in nfs_access_get_cached()
2548 static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set) in nfs_access_add_rbtree()
2554 struct nfs_access_entry *entry; in nfs_access_add_rbtree()
2560 entry = rb_entry(parent, struct nfs_access_entry, rb_node); in nfs_access_add_rbtree()
2583 void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set) in nfs_access_add_cache()
2585 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL); in nfs_access_add_cache()
2647 void nfs_access_set_mask(struct nfs_access_entry *entry, u32 access_result) in nfs_access_set_mask()
2655 struct nfs_access_entry cache; in nfs_do_access()