]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
fuse: notify: don't move pages
authorMiklos Szeredi <mszeredi@suse.cz>
Thu, 26 Feb 2015 10:45:47 +0000 (11:45 +0100)
committerSasha Levin <sasha.levin@oracle.com>
Sat, 28 Mar 2015 13:33:41 +0000 (09:33 -0400)
[ Upstream commit 0d2783626a53d4c922f82d51fa675cb5d13f0d36 ]

fuse_try_move_page() is not prepared for replacing pages that have already
been read.

Reported-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Cc: stable@vger.kernel.org
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
fs/fuse/dev.c

index cc756cb0427acb17da18040b713ef8d75c643fea..f2bbb851336070a7bcf8781d81e0b38bf09f57b6 100644 (file)
@@ -1721,6 +1721,9 @@ copy_finish:
 static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
                       unsigned int size, struct fuse_copy_state *cs)
 {
+       /* Don't try to move pages (yet) */
+       cs->move_pages = 0;
+
        switch (code) {
        case FUSE_NOTIFY_POLL:
                return fuse_notify_poll(fc, size, cs);