Lines Matching refs:nfs_access_entry

2529 static void nfs_access_free_entry(struct nfs_access_entry *entry)  in nfs_access_free_entry()
2540 struct nfs_access_entry *cache; in nfs_access_free_list()
2543 cache = list_entry(head->next, struct nfs_access_entry, lru); in nfs_access_free_list()
2554 struct nfs_access_entry *cache; in nfs_do_access_cache_scan()
2568 struct nfs_access_entry, lru); in nfs_do_access_cache_scan()
2627 struct nfs_access_entry *entry; in __nfs_access_zap_cache()
2631 entry = rb_entry(n, struct nfs_access_entry, rb_node); in __nfs_access_zap_cache()
2657 static struct nfs_access_entry *nfs_access_search_rbtree(struct inode *inode, const struct cred *cr… in nfs_access_search_rbtree()
2662 struct nfs_access_entry *entry = in nfs_access_search_rbtree()
2663 rb_entry(n, struct nfs_access_entry, rb_node); in nfs_access_search_rbtree()
2676 …_cached_locked(struct inode *inode, const struct cred *cred, struct nfs_access_entry *res, bool ma… in nfs_access_get_cached_locked()
2679 struct nfs_access_entry *cache; in nfs_access_get_cached_locked()
2719 …s_access_get_cached_rcu(struct inode *inode, const struct cred *cred, struct nfs_access_entry *res) in nfs_access_get_cached_rcu()
2725 struct nfs_access_entry *cache; in nfs_access_get_cached_rcu()
2733 cache = list_entry(lh, struct nfs_access_entry, lru); in nfs_access_get_cached_rcu()
2750 nfs_access_entry *res, bool may_block) in nfs_access_get_cached()
2763 static void nfs_access_add_rbtree(struct inode *inode, struct nfs_access_entry *set) in nfs_access_add_rbtree()
2769 struct nfs_access_entry *entry; in nfs_access_add_rbtree()
2775 entry = rb_entry(parent, struct nfs_access_entry, rb_node); in nfs_access_add_rbtree()
2798 void nfs_access_add_cache(struct inode *inode, struct nfs_access_entry *set) in nfs_access_add_cache()
2800 struct nfs_access_entry *cache = kmalloc(sizeof(*cache), GFP_KERNEL); in nfs_access_add_cache()
2862 void nfs_access_set_mask(struct nfs_access_entry *entry, u32 access_result) in nfs_access_set_mask()
2870 struct nfs_access_entry cache; in nfs_do_access()