From: Dan Carpenter Date: Mon, 30 Apr 2012 14:36:21 +0000 (+0300) Subject: cifs: fix revalidation test in cifs_llseek() X-Git-Tag: v3.3.7~11 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4c7a674cc364f699fa5b6a6176c6cff4f586e607;p=karo-tx-linux.git cifs: fix revalidation test in cifs_llseek() commit 48a5730e5b71201e226ff06e245bf308feba5f10 upstream. This test is always true so it means we revalidate the length every time, which generates more network traffic. When it is SEEK_SET or SEEK_CUR, then we don't need to revalidate. Signed-off-by: Dan Carpenter Reviewed-by: Jeff Layton Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 6ee1cb45ca0d..70dd381baefb 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -703,7 +703,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;