aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-05-10 14:59:02 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2012-05-10 14:59:02 -0700
commitfda27bed908bb8c1c9bdaceb6b49bc6b21fc5424 (patch)
tree0c0ced4790e6efcddeff04154bc8f7a9fbe80fc0
parentbc46f9375a286d05f84a9464efc2b7f1f5614ff4 (diff)
parent48a5730e5b71201e226ff06e245bf308feba5f10 (diff)
downloadlinux-cve-tagged-fda27bed908bb8c1c9bdaceb6b49bc6b21fc5424.tar.gz
Merge git://git.samba.org/sfrench/cifs-2.6
Pull cifs fix from Steve French. * git://git.samba.org/sfrench/cifs-2.6: cifs: fix revalidation test in cifs_llseek()
-rw-r--r--fs/cifs/cifsfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index ca6a3796a33bb0..541ef81f6ae8ff 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -699,7 +699,7 @@ static loff_t cifs_llseek(struct file *file, loff_t offset, int origin)
* origin == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
* the cached file length
*/
- if (origin != SEEK_SET || origin != SEEK_CUR) {
+ if (origin != SEEK_SET && origin != SEEK_CUR) {
int rc;
struct inode *inode = file->f_path.dentry->d_inode;