diff options
author | Trond Myklebust <trondmy@gmail.com> | 2019-04-24 17:46:42 -0400 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2019-04-26 16:00:48 -0400 |
commit | 79caa5fad47c69874f9efc4ac3128cc3f6d36f6e (patch) | |
tree | 0172cd4c9d7525e2ebd712ff4bbefac61f046430 /fs/lockd/mon.c | |
parent | 2cfd11f16f01c0ee8f83bb07027c9d2f43565473 (diff) | |
download | linux-79caa5fad47c69874f9efc4ac3128cc3f6d36f6e.tar.bz2 |
SUNRPC: Cache cred of process creating the rpc_client
When converting kuids to AUTH_UNIX creds, etc we will want to use the
same user namespace as the process that created the rpc client.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/lockd/mon.c')
-rw-r--r-- | fs/lockd/mon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c index 654594ef4f94..1eabd91870e6 100644 --- a/fs/lockd/mon.c +++ b/fs/lockd/mon.c @@ -82,6 +82,7 @@ static struct rpc_clnt *nsm_create(struct net *net, const char *nodename) .version = NSM_VERSION, .authflavor = RPC_AUTH_NULL, .flags = RPC_CLNT_CREATE_NOPING, + .cred = current_cred(), }; return rpc_create(&args); |