summaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsglob.h
diff options
context:
space:
mode:
authorEric W. Biederman2013-02-06 11:23:02 +0100
committerEric W. Biederman2013-02-13 16:28:52 +0100
commitfef59fd728366aa9bf125b8859aff84fa0bd1a36 (patch)
treea750377dd57e7796e0512e4a89bad13ae655fde1 /fs/cifs/cifsglob.h
parentcifs: Convert struct cifs_fattr to use kuid and kgids (diff)
downloadkernel-qcow2-linux-fef59fd728366aa9bf125b8859aff84fa0bd1a36.tar.gz
kernel-qcow2-linux-fef59fd728366aa9bf125b8859aff84fa0bd1a36.tar.xz
kernel-qcow2-linux-fef59fd728366aa9bf125b8859aff84fa0bd1a36.zip
cifs: Convert struct cifsFileInfo to use a kuid
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
index 98312fda0d35..04aa74e5b348 100644
--- a/fs/cifs/cifsglob.h
+++ b/fs/cifs/cifsglob.h
@@ -930,7 +930,7 @@ struct cifsFileInfo {
struct list_head tlist; /* pointer to next fid owned by tcon */
struct list_head flist; /* next fid (file instance) for this inode */
struct cifs_fid_locks *llist; /* brlocks held by this fid */
- unsigned int uid; /* allows finding which FileInfo structure */
+ kuid_t uid; /* allows finding which FileInfo structure */
__u32 pid; /* process id who opened file */
struct cifs_fid fid; /* file id from remote */
/* BB add lock scope info here if needed */ ;