diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-06 05:23:02 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-13 10:28:52 -0500 |
commit | fef59fd728366aa9bf125b8859aff84fa0bd1a36 (patch) | |
tree | a750377dd57e7796e0512e4a89bad13ae655fde1 /fs/cifs/cifsglob.h | |
parent | 4a2c8cf56953a6ebe3c8671433607b7f96f200d5 (diff) |
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.h | 2 |
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 { | |||
930 | struct list_head tlist; /* pointer to next fid owned by tcon */ | 930 | struct list_head tlist; /* pointer to next fid owned by tcon */ |
931 | struct list_head flist; /* next fid (file instance) for this inode */ | 931 | struct list_head flist; /* next fid (file instance) for this inode */ |
932 | struct cifs_fid_locks *llist; /* brlocks held by this fid */ | 932 | struct cifs_fid_locks *llist; /* brlocks held by this fid */ |
933 | unsigned int uid; /* allows finding which FileInfo structure */ | 933 | kuid_t uid; /* allows finding which FileInfo structure */ |
934 | __u32 pid; /* process id who opened file */ | 934 | __u32 pid; /* process id who opened file */ |
935 | struct cifs_fid fid; /* file id from remote */ | 935 | struct cifs_fid fid; /* file id from remote */ |
936 | /* BB add lock scope info here if needed */ ; | 936 | /* BB add lock scope info here if needed */ ; |