mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
cifs: Pass GLOBAL_ROOT_UID and GLOBAL_ROOT_GID to keyring_alloc
keyring_alloc has been updated to take a kuid_t and kgid_t so pass GLOBAL_ROOT_UID instead of 0 for the uid and GLOBAL_ROOT_GID instead of 0 for the gid. Cc: Steve French <smfrench@gmail.com> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
parent
355958f289
commit
8e3028b908
@ -347,7 +347,8 @@ init_cifs_idmap(void)
|
|||||||
if (!cred)
|
if (!cred)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
keyring = keyring_alloc(".cifs_idmap", 0, 0, cred,
|
keyring = keyring_alloc(".cifs_idmap",
|
||||||
|
GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred,
|
||||||
(KEY_POS_ALL & ~KEY_POS_SETATTR) |
|
(KEY_POS_ALL & ~KEY_POS_SETATTR) |
|
||||||
KEY_USR_VIEW | KEY_USR_READ,
|
KEY_USR_VIEW | KEY_USR_READ,
|
||||||
KEY_ALLOC_NOT_IN_QUOTA, NULL);
|
KEY_ALLOC_NOT_IN_QUOTA, NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user