Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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()

+1 -1
+1 -1
fs/cifs/cifsfs.c
··· 699 699 * origin == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate 700 700 * the cached file length 701 701 */ 702 - if (origin != SEEK_SET || origin != SEEK_CUR) { 702 + if (origin != SEEK_SET && origin != SEEK_CUR) { 703 703 int rc; 704 704 struct inode *inode = file->f_path.dentry->d_inode; 705 705