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/file.c | |
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/file.c')
-rw-r--r-- | fs/cifs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index b9baf5f66349..c23fbd81fe1a 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c | |||
@@ -1649,7 +1649,7 @@ struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *cifs_inode, | |||
1649 | are always at the end of the list but since the first entry might | 1649 | are always at the end of the list but since the first entry might |
1650 | have a close pending, we go through the whole list */ | 1650 | have a close pending, we go through the whole list */ |
1651 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { | 1651 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
1652 | if (fsuid_only && open_file->uid != current_fsuid()) | 1652 | if (fsuid_only && !uid_eq(open_file->uid, current_fsuid())) |
1653 | continue; | 1653 | continue; |
1654 | if (OPEN_FMODE(open_file->f_flags) & FMODE_READ) { | 1654 | if (OPEN_FMODE(open_file->f_flags) & FMODE_READ) { |
1655 | if (!open_file->invalidHandle) { | 1655 | if (!open_file->invalidHandle) { |
@@ -1702,7 +1702,7 @@ refind_writable: | |||
1702 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { | 1702 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
1703 | if (!any_available && open_file->pid != current->tgid) | 1703 | if (!any_available && open_file->pid != current->tgid) |
1704 | continue; | 1704 | continue; |
1705 | if (fsuid_only && open_file->uid != current_fsuid()) | 1705 | if (fsuid_only && !uid_eq(open_file->uid, current_fsuid())) |
1706 | continue; | 1706 | continue; |
1707 | if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { | 1707 | if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { |
1708 | if (!open_file->invalidHandle) { | 1708 | if (!open_file->invalidHandle) { |