diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-01 16:31:17 -0800 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-13 06:15:16 -0800 |
commit | 7eaf040b720bc8c0ce5cd49151ca194ca2d56842 (patch) | |
tree | 85ea36dccdad8fed0da5e4e0277ecc3d47dc142b /include/linux/sunrpc/svcauth.h | |
parent | bf37f794372d5b8fda66702e1f3e70d4f07b6533 (diff) | |
download | op-kernel-dev-7eaf040b720bc8c0ce5cd49151ca194ca2d56842.zip op-kernel-dev-7eaf040b720bc8c0ce5cd49151ca194ca2d56842.tar.gz |
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>
Diffstat (limited to 'include/linux/sunrpc/svcauth.h')
-rw-r--r-- | include/linux/sunrpc/svcauth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sunrpc/svcauth.h b/include/linux/sunrpc/svcauth.h index dd74084..ff374ab 100644 --- a/include/linux/sunrpc/svcauth.h +++ b/include/linux/sunrpc/svcauth.h @@ -18,8 +18,8 @@ #include <linux/cred.h> struct svc_cred { - uid_t cr_uid; - gid_t cr_gid; + kuid_t cr_uid; + kgid_t cr_gid; struct group_info *cr_group_info; u32 cr_flavor; /* pseudoflavor */ char *cr_principal; /* for gss */ |