Lines Matching refs:ch
268 struct cache_head *ch; in svc_expkey_lookup() local
271 ch = sunrpc_cache_lookup(cd, &item->h, hash); in svc_expkey_lookup()
272 if (ch) in svc_expkey_lookup()
273 return container_of(ch, struct svc_expkey, h); in svc_expkey_lookup()
282 struct cache_head *ch; in svc_expkey_update() local
285 ch = sunrpc_cache_update(cd, &new->h, &old->h, hash); in svc_expkey_update()
286 if (ch) in svc_expkey_update()
287 return container_of(ch, struct svc_expkey, h); in svc_expkey_update()
733 struct cache_head *ch; in svc_export_lookup() local
736 ch = sunrpc_cache_lookup(exp->cd, &exp->h, hash); in svc_export_lookup()
737 if (ch) in svc_export_lookup()
738 return container_of(ch, struct svc_export, h); in svc_export_lookup()
746 struct cache_head *ch; in svc_export_update() local
749 ch = sunrpc_cache_update(old->cd, &new->h, &old->h, hash); in svc_export_update()
750 if (ch) in svc_export_update()
751 return container_of(ch, struct svc_export, h); in svc_export_update()
1040 struct cache_head *ch; in e_start() local
1051 for (ch=export_table[hash]; ch; ch=ch->next) in e_start()
1053 return ch; in e_start()
1067 struct cache_head *ch = p; in e_next() local
1074 else if (ch->next == NULL) { in e_next()
1079 return ch->next; in e_next()