diff options
author | Eric W. Biederman <[email protected]> | 2013-02-01 14:16:29 -0800 |
---|---|---|
committer | Eric W. Biederman <[email protected]> | 2013-02-13 06:15:28 -0800 |
commit | 54f834cd5501fb5fc801e4719a3ad0c894a3af2c (patch) | |
tree | c6d1a3289f78843ddb4b78ab3c35cc109d5feac0 | |
parent | 4e963d4f3ed1b756ff20f84960fcb4db42509146 (diff) |
nfs: Convert struct nfs_fattr to Use kuid_t and kgid_t
Cc: "J. Bruce Fields" <[email protected]>
Cc: Trond Myklebust <[email protected]>
Signed-off-by: "Eric W. Biederman" <[email protected]>
-rw-r--r-- | include/linux/nfs_xdr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 29adb12c7ecf..13441ddac33d 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -48,8 +48,8 @@ struct nfs_fattr { unsigned int valid; /* which fields are valid */ umode_t mode; __u32 nlink; - __u32 uid; - __u32 gid; + kuid_t uid; + kgid_t gid; dev_t rdev; __u64 size; union { |