diff options
| author | Stanislav Kinsbursky <[email protected]> | 2013-02-04 11:02:55 +0000 |
|---|---|---|
| committer | J. Bruce Fields <[email protected]> | 2013-02-15 15:43:47 +0000 |
| commit | 21cd1254d3402a72927ed744e8ac1a7cf532f1ea (patch) | |
| tree | 614baf2ba9099118ff94c3954fa5f22dcb75a086 /fs/nfs/dns_resolve.c | |
| parent | SUNRPC: rework cache upcall logic (diff) | |
| download | kernel-21cd1254d3402a72927ed744e8ac1a7cf532f1ea.tar.gz kernel-21cd1254d3402a72927ed744e8ac1a7cf532f1ea.zip | |
SUNRPC: remove "cache_request" argument in sunrpc_cache_pipe_upcall() function
Passing this pointer is redundant since it's stored on cache_detail structure,
which is also passed to sunrpc_cache_pipe_upcall () function.
Signed-off-by: Stanislav Kinsbursky <[email protected]>
Signed-off-by: J. Bruce Fields <[email protected]>
Diffstat (limited to 'fs/nfs/dns_resolve.c')
| -rw-r--r-- | fs/nfs/dns_resolve.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/dns_resolve.c b/fs/nfs/dns_resolve.c index 55bc5d11457c..945527092295 100644 --- a/fs/nfs/dns_resolve.c +++ b/fs/nfs/dns_resolve.c @@ -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, cd->cache_request); + ret = sunrpc_cache_pipe_upcall(cd, ch); return ret; } |
