Lines Matching refs:nfs_access_entry

2532 static void nfs_access_free_entry(struct nfs_access_entry *entry)  in nfs_access_free_entry()
2543 struct nfs_access_entry *cache; in nfs_access_free_list()
2546 cache = list_entry(head->next, struct nfs_access_entry, lru); in nfs_access_free_list()
2557 struct nfs_access_entry *cache; in nfs_do_access_cache_scan()
2571 struct nfs_access_entry, lru); in nfs_do_access_cache_scan()
2630 struct nfs_access_entry *entry; in __nfs_access_zap_cache()
2634 entry = rb_entry(n, struct nfs_access_entry, rb_node); in __nfs_access_zap_cache()
2660 static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, const struct cred *cr… in nfs_access_search_rbtree()
2665 struct nfs_access_entry *entry = in nfs_access_search_rbtree()
2666 rb_entry(n, struct nfs_access_entry, rb_node); in nfs_access_search_rbtree()
2679 …_cached_locked(struct inode *inode, const struct cred *cred, struct nfs_access_entry *res, bool ma… in nfs_access_get_cached_locked()
2682 struct nfs_access_entry *cache; in nfs_access_get_cached_locked()
2722 …s_access_get_cached_rcu(struct inode *inode, const struct cred *cred, struct nfs_access_entry *res) in nfs_access_get_cached_rcu()
2728 struct nfs_access_entry *cache; in nfs_access_get_cached_rcu()
2736 cache = list_entry(lh, struct nfs_access_entry, lru); in nfs_access_get_cached_rcu()
2753 nfs_access_entry *res, bool may_block) in nfs_access_get_cached()
2766 static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set) in nfs_access_add_rbtree()
2772 struct nfs_access_entry *entry; in nfs_access_add_rbtree()
2778 entry = rb_entry(parent, struct nfs_access_entry, rb_node); in nfs_access_add_rbtree()
2801 void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set) in nfs_access_add_cache()
2803 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL); in nfs_access_add_cache()
2865 void nfs_access_set_mask(struct nfs_access_entry *entry, u32 access_result) in nfs_access_set_mask()
2873 struct nfs_access_entry cache; in nfs_do_access()