mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
SUNRPC: introduce cache_detail->cache_request callback
This callback will allow to simplify upcalls in further patches in this series. Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
462b8f6bf1
commit
73fb847a44
6 changed files with 20 additions and 8 deletions
|
@ -144,7 +144,7 @@ static int nfs_dns_upcall(struct cache_detail *cd,
|
|||
|
||||
ret = nfs_cache_upcall(cd, key->hostname);
|
||||
if (ret)
|
||||
ret = sunrpc_cache_pipe_upcall(cd, ch, nfs_dns_request);
|
||||
ret = sunrpc_cache_pipe_upcall(cd, ch, cd->cache_request);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -359,6 +359,7 @@ static struct cache_detail nfs_dns_resolve_template = {
|
|||
.name = "dns_resolve",
|
||||
.cache_put = nfs_dns_ent_put,
|
||||
.cache_upcall = nfs_dns_upcall,
|
||||
.cache_request = nfs_dns_request,
|
||||
.cache_parse = nfs_dns_parse,
|
||||
.cache_show = nfs_dns_show,
|
||||
.match = nfs_dns_match,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue