/linux-6.6.21/include/linux/sunrpc/ |
D | cache.h | 47 struct cache_head { struct 80 struct cache_head *); 83 struct cache_head *ch, 91 struct cache_head *h); 95 struct cache_head * (*alloc)(void); 97 int (*match)(struct cache_head *orig, struct cache_head *new); 98 void (*init)(struct cache_head *orig, struct cache_head *new); 99 void (*update)(struct cache_head *orig, struct cache_head *new); 145 struct cache_head *item; /* cache item we wait on */ 179 extern struct cache_head * [all …]
|
/linux-6.6.21/net/sunrpc/ |
D | svcauth_unix.c | 99 struct cache_head h; 108 struct cache_head *item = container_of(kref, struct cache_head, ref); in ip_map_put() 121 static int ip_map_match(struct cache_head *corig, struct cache_head *cnew) in ip_map_match() 128 static void ip_map_init(struct cache_head *cnew, struct cache_head *citem) in ip_map_init() 136 static void update(struct cache_head *cnew, struct cache_head *citem) in update() 144 static struct cache_head *ip_map_alloc(void) in ip_map_alloc() 153 static int ip_map_upcall(struct cache_detail *cd, struct cache_head *h) in ip_map_upcall() 159 struct cache_head *h, in ip_map_request() 262 struct cache_head *h) in ip_map_show() 294 struct cache_head *ch; in __ip_map_lookup() [all …]
|
D | cache.c | 42 static bool cache_defer_req(struct cache_req *req, struct cache_head *item); 43 static void cache_revisit_request(struct cache_head *item); 45 static void cache_init(struct cache_head *h, struct cache_detail *detail) in cache_init() 58 static void cache_fresh_unlocked(struct cache_head *head, 61 static struct cache_head *sunrpc_cache_find_rcu(struct cache_detail *detail, in sunrpc_cache_find_rcu() 62 struct cache_head *key, in sunrpc_cache_find_rcu() 66 struct cache_head *tmp; in sunrpc_cache_find_rcu() 83 static void sunrpc_begin_cache_remove_entry(struct cache_head *ch, in sunrpc_begin_cache_remove_entry() 92 static void sunrpc_end_cache_remove_entry(struct cache_head *ch, in sunrpc_end_cache_remove_entry() 99 static struct cache_head *sunrpc_cache_add_entry(struct cache_detail *detail, in sunrpc_cache_add_entry() [all …]
|
/linux-6.6.21/fs/nfs/ |
D | dns_resolve.c | 60 struct cache_head h; 71 static void nfs_dns_ent_update(struct cache_head *cnew, in nfs_dns_ent_update() 72 struct cache_head *ckey) in nfs_dns_ent_update() 84 static void nfs_dns_ent_init(struct cache_head *cnew, in nfs_dns_ent_init() 85 struct cache_head *ckey) in nfs_dns_ent_init() 121 static struct cache_head *nfs_dns_ent_alloc(void) in nfs_dns_ent_alloc() 140 struct cache_head *ch, in nfs_dns_request() 150 struct cache_head *ch) in nfs_dns_upcall() 162 static int nfs_dns_match(struct cache_head *ca, in nfs_dns_match() 163 struct cache_head *cb) in nfs_dns_match() [all …]
|
/linux-6.6.21/fs/nfsd/ |
D | nfs4idmap.c | 64 struct cache_head h; 78 ent_init(struct cache_head *cnew, struct cache_head *citm) in ent_init() 97 static struct cache_head * 127 idtoname_upcall(struct cache_detail *cd, struct cache_head *h) in idtoname_upcall() 133 idtoname_request(struct cache_detail *cd, struct cache_head *ch, char **bpp, in idtoname_request() 148 idtoname_match(struct cache_head *ca, struct cache_head *cb) in idtoname_match() 158 idtoname_show(struct seq_file *m, struct cache_detail *cd, struct cache_head *h) in idtoname_show() 276 struct cache_head *ch = sunrpc_cache_lookup_rcu(cd, &item->h, in idtoname_lookup() 287 struct cache_head *ch = sunrpc_cache_update(cd, &new->h, &old->h, in idtoname_update() 307 nametoid_upcall(struct cache_detail *cd, struct cache_head *h) in nametoid_upcall() [all …]
|
D | export.c | 54 static int expkey_upcall(struct cache_detail *cd, struct cache_head *h) in expkey_upcall() 60 struct cache_head *h, in expkey_request() 179 struct cache_head *h) in expkey_show() 202 static inline int expkey_match (struct cache_head *a, struct cache_head *b) in expkey_match() 214 static inline void expkey_init(struct cache_head *cnew, in expkey_init() 215 struct cache_head *citem) in expkey_init() 227 static inline void expkey_update(struct cache_head *cnew, in expkey_update() 228 struct cache_head *citem) in expkey_update() 237 static struct cache_head *expkey_alloc(void) in expkey_alloc() 289 struct cache_head *ch; in svc_expkey_lookup() [all …]
|
D | export.h | 64 struct cache_head h; 88 struct cache_head h;
|
/linux-6.6.21/Documentation/filesystems/nfs/ |
D | rpc-cache.rst | 46 structure definition that must contain a struct cache_head 58 struct cache_head \*alloc(void) 66 in the cache_head. cache_put should release any 72 int match(struct cache_head \*orig, struct cache_head \*new) 76 void init(struct cache_head \*orig, struct cache_head \*new) 80 void update(struct cache_head \*orig, struct cache_head \*new) 83 int cache_show(struct seq_file \*m, struct cache_detail \*cd, struct cache_head \*h) 88 int cache_request(struct cache_detail \*cd, struct cache_head \*h, char \*\*bpp, int \*blen) 112 to the cache_head in a sample item with the 'key' fields filled in.
|
/linux-6.6.21/net/sunrpc/auth_gss/ |
D | svcauth_gss.c | 99 struct cache_head h; 138 static int rsi_match(struct cache_head *a, struct cache_head *b) in rsi_match() 160 static void rsi_init(struct cache_head *cnew, struct cache_head *citem) in rsi_init() 179 static void update_rsi(struct cache_head *cnew, struct cache_head *citem) in update_rsi() 198 static struct cache_head *rsi_alloc(void) in rsi_alloc() 207 static int rsi_upcall(struct cache_detail *cd, struct cache_head *h) in rsi_upcall() 213 struct cache_head *h, in rsi_request() 323 struct cache_head *ch; in rsi_lookup() 335 struct cache_head *ch; in rsi_update() 369 struct cache_head h; [all …]
|
/linux-6.6.21/sound/firewire/motu/ |
D | amdtp-motu.c | 378 unsigned int cache_head = cache->head; in write_sph() local 383 unsigned int tick = (base_tick + event_offsets[cache_head]) % TICKS_PER_SECOND; in write_sph() 387 cache_head = (cache_head + 1) % cache_size; in write_sph() 391 cache->head = cache_head; in write_sph()
|
/linux-6.6.21/include/trace/events/ |
D | sunrpc.h | 2410 const struct cache_head *h 2416 __field(const struct cache_head *, h) 2431 const struct cache_head *h \
|