aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/sunrpc/auth.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sunrpc/auth.h b/include/linux/sunrpc/auth.h
index c4db9424b63b..1f95bd612053 100644
--- a/include/linux/sunrpc/auth.h
+++ b/include/linux/sunrpc/auth.h
@@ -46,6 +46,7 @@ enum {
46 46
47/* Work around the lack of a VFS credential */ 47/* Work around the lack of a VFS credential */
48struct auth_cred { 48struct auth_cred {
49 const struct cred *cred;
49 kuid_t uid; 50 kuid_t uid;
50 kgid_t gid; 51 kgid_t gid;
51 struct group_info *group_info; 52 struct group_info *group_info;
@@ -68,6 +69,7 @@ struct rpc_cred {
68 unsigned long cr_expire; /* when to gc */ 69 unsigned long cr_expire; /* when to gc */
69 unsigned long cr_flags; /* various flags */ 70 unsigned long cr_flags; /* various flags */
70 refcount_t cr_count; /* ref count */ 71 refcount_t cr_count; /* ref count */
72 const struct cred *cr_cred;
71 73
72 kuid_t cr_uid; 74 kuid_t cr_uid;
73 75