diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-20 21:44:39 +0300 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-20 21:44:39 +0300 |
commit | 686517f1ad1630c11964d668b556aab79b8c942e (patch) | |
tree | fc62470bef473ce51f6caddb3b187da756b8bffc /fs/lockd/svcproc.c | |
parent | 5e1abf8cb713a0b94f5a400c7b9b797990cd9dec (diff) | |
download | linux-686517f1ad1630c11964d668b556aab79b8c942e.tar.xz |
lockd: Make nlmsvc_create_block() use nlmsvc_lookup_host()
Currently it uses nlmclnt_lookup_host(), which puts the resulting host
structure on a different list.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/lockd/svcproc.c')
-rw-r--r-- | fs/lockd/svcproc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/lockd/svcproc.c b/fs/lockd/svcproc.c index 35681d9cf1fc..4986fbe44540 100644 --- a/fs/lockd/svcproc.c +++ b/fs/lockd/svcproc.c @@ -508,8 +508,7 @@ nlmsvc_callback(struct svc_rqst *rqstp, u32 proc, struct nlm_res *resp) if (!(call = nlmclnt_alloc_call())) return rpc_system_err; - host = nlmclnt_lookup_host(&rqstp->rq_addr, - rqstp->rq_prot, rqstp->rq_vers); + host = nlmsvc_lookup_host(rqstp); if (!host) { kfree(call); return rpc_system_err; |