From: Miklos Szeredi Date: Thu, 26 Feb 2015 10:45:47 +0000 (+0100) Subject: fuse: notify: don't move pages X-Git-Tag: v3.2.69~123 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=792ad632359f14371d5f19354e3ea69c22e0f5d0;p=pandora-kernel.git fuse: notify: don't move pages commit 0d2783626a53d4c922f82d51fa675cb5d13f0d36 upstream. fuse_try_move_page() is not prepared for replacing pages that have already been read. Reported-by: Al Viro Signed-off-by: Miklos Szeredi Signed-off-by: Ben Hutchings --- diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index cf0098d26409..a826913e88ac 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c @@ -1570,6 +1570,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);