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

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull vfs fixes from Al Viro:
"A fs-cache regression fix, and adding a warning about obnoxiou^W
moderation of list given in MAINTAINERS"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
MAINTAINERS: linux-cachefs@redhat.com is moderated for non-subscribers
FS-Cache: Add missing initialization of ret in cachefiles_write_page()

+3 -3
+2 -2
MAINTAINERS
··· 2546 2546 2547 2547 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS 2548 2548 M: David Howells <dhowells@redhat.com> 2549 - L: linux-cachefs@redhat.com 2549 + L: linux-cachefs@redhat.com (moderated for non-subscribers) 2550 2550 S: Supported 2551 2551 F: Documentation/filesystems/caching/cachefiles.txt 2552 2552 F: fs/cachefiles/ ··· 4559 4559 4560 4560 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS 4561 4561 M: David Howells <dhowells@redhat.com> 4562 - L: linux-cachefs@redhat.com 4562 + L: linux-cachefs@redhat.com (moderated for non-subscribers) 4563 4563 S: Supported 4564 4564 F: Documentation/filesystems/caching/ 4565 4565 F: fs/fscache/
+1 -1
fs/cachefiles/rdwr.c
··· 879 879 loff_t pos, eof; 880 880 size_t len; 881 881 void *data; 882 - int ret; 882 + int ret = -ENOBUFS; 883 883 884 884 ASSERT(op != NULL); 885 885 ASSERT(page != NULL);