summaryrefslogtreecommitdiffstats
path: root/fs/nfs/idmap.c
diff options
context:
space:
mode:
authorEric W. Biederman2013-02-01 12:03:16 +0100
committerEric W. Biederman2013-02-13 15:15:27 +0100
commit4e963d4f3ed1b756ff20f84960fcb4db42509146 (patch)
treec3b53cedf29fee5844fd9236706c8185dac96287 /fs/nfs/idmap.c
parentsunrpc: Properly decode kuids and kgids in RPC_AUTH_UNIX credentials (diff)
downloadkernel-qcow2-linux-4e963d4f3ed1b756ff20f84960fcb4db42509146.tar.gz
kernel-qcow2-linux-4e963d4f3ed1b756ff20f84960fcb4db42509146.tar.xz
kernel-qcow2-linux-4e963d4f3ed1b756ff20f84960fcb4db42509146.zip
nfs: Pass GLOBAL_ROOT_UID and GLOBAL_ROOT_GID to keyring alloc
Cc: "J. Bruce Fields" <bfields@fieldses.org> Cc: Trond Myklebust <Trond.Myklebust@netapp.com> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/nfs/idmap.c')
-rw-r--r--fs/nfs/idmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfs/idmap.c b/fs/nfs/idmap.c
index bc3968fa81e5..f77017c4e28b 100644
--- a/fs/nfs/idmap.c
+++ b/fs/nfs/idmap.c
@@ -193,7 +193,8 @@ static int nfs_idmap_init_keyring(void)
if (!cred)
return -ENOMEM;
- keyring = keyring_alloc(".id_resolver", 0, 0, cred,
+ keyring = keyring_alloc(".id_resolver",
+ GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred,
(KEY_POS_ALL & ~KEY_POS_SETATTR) |
KEY_USR_VIEW | KEY_USR_READ,
KEY_ALLOC_NOT_IN_QUOTA, NULL);