diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-06 01:53:25 -0800 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-13 07:28:51 -0800 |
commit | 4a2c8cf56953a6ebe3c8671433607b7f96f200d5 (patch) | |
tree | 307523cb5ac706ab182cd2942a47895dc1647373 /fs/cifs/cifsglob.h | |
parent | 6d4a083205c27bc2e2a1c03dff4acf2fe457d1c4 (diff) | |
download | talos-op-linux-4a2c8cf56953a6ebe3c8671433607b7f96f200d5.tar.gz talos-op-linux-4a2c8cf56953a6ebe3c8671433607b7f96f200d5.zip |
cifs: Convert struct cifs_fattr to use kuid and kgids
In cifs_unix_to_basic_fattr only update the cifs_fattr with an id if
it is valid after conversion.
Cc: Steve French <smfrench@gmail.com>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 7993a7a07ae2..98312fda0d35 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -1245,8 +1245,8 @@ struct cifs_fattr { u64 cf_eof; u64 cf_bytes; u64 cf_createtime; - uid_t cf_uid; - gid_t cf_gid; + kuid_t cf_uid; + kgid_t cf_gid; umode_t cf_mode; dev_t cf_rdev; unsigned int cf_nlink; |