diff options
author | Trond Myklebust <trondmy@gmail.com> | 2019-04-24 23:46:50 +0200 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2019-04-26 23:51:23 +0200 |
commit | b422df915cef80333d7a1732e6ed81f41db12b79 (patch) | |
tree | fefeaf3f1ff40381b9b7cdbd0a20d994920c9c22 /fs/lockd/clntlock.c | |
parent | NFS: When mounting, don't share filesystems between different user namespaces (diff) | |
download | linux-b422df915cef80333d7a1732e6ed81f41db12b79.tar.xz linux-b422df915cef80333d7a1732e6ed81f41db12b79.zip |
lockd: Store the lockd client credential in struct nlm_host
When we create a new lockd client, we want to be able to pass the
correct credential of the process that created the struct nlm_host.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/lockd/clntlock.c')
-rw-r--r-- | fs/lockd/clntlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/lockd/clntlock.c b/fs/lockd/clntlock.c index c2a128678e6e..70f520b41a19 100644 --- a/fs/lockd/clntlock.c +++ b/fs/lockd/clntlock.c @@ -63,7 +63,7 @@ struct nlm_host *nlmclnt_init(const struct nlmclnt_initdata *nlm_init) host = nlmclnt_lookup_host(nlm_init->address, nlm_init->addrlen, nlm_init->protocol, nlm_version, nlm_init->hostname, nlm_init->noresvport, - nlm_init->net); + nlm_init->net, nlm_init->cred); if (host == NULL) goto out_nohost; if (host->h_rpcclnt == NULL && nlm_bind_host(host) == NULL) |