mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
sunrpc: Use kuid_t and kgid_t where appropriate
Convert variables that store uids and gids to be of type kuid_t and kgid_t instead of type uid_t and gid_t. Cc: "J. Bruce Fields" <bfields@fieldses.org> Cc: Trond Myklebust <Trond.Myklebust@netapp.com> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
@@ -18,8 +18,8 @@
|
||||
|
||||
struct unx_cred {
|
||||
struct rpc_cred uc_base;
|
||||
gid_t uc_gid;
|
||||
gid_t uc_gids[NFS_NGROUPS];
|
||||
kgid_t uc_gid;
|
||||
kgid_t uc_gids[NFS_NGROUPS];
|
||||
};
|
||||
#define uc_uid uc_base.cr_uid
|
||||
|
||||
|
Reference in New Issue
Block a user