diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2019-01-16 10:27:59 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-02-12 19:45:00 +0100 |
commit | 4f3d69898e1a4838efbfa593b2953533a0c86657 (patch) | |
tree | 66dc6f829656cad42ba19ed10b0329ac1053e933 /fs/fuse | |
parent | 50449aafb818a55a012985d2412a34a4c624f7f2 (diff) | |
download | linux-stable-4f3d69898e1a4838efbfa593b2953533a0c86657.tar.gz linux-stable-4f3d69898e1a4838efbfa593b2953533a0c86657.tar.bz2 linux-stable-4f3d69898e1a4838efbfa593b2953533a0c86657.zip |
fuse: decrement NR_WRITEBACK_TEMP on the right page
commit a2ebba824106dabe79937a9f29a875f837e1b6d4 upstream.
NR_WRITEBACK_TEMP is accounted on the temporary page in the request, not
the page cache page.
Fixes: 8b284dc47291 ("fuse: writepages: handle same page rewrites")
Cc: <stable@vger.kernel.org> # v3.13
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/fuse')
-rw-r--r-- | fs/fuse/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index 1cd46e667e3d..30a607473621 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -1772,7 +1772,7 @@ static bool fuse_writepage_in_flight(struct fuse_req *new_req, spin_unlock(&fc->lock); dec_wb_stat(&bdi->wb, WB_WRITEBACK); - dec_node_page_state(page, NR_WRITEBACK_TEMP); + dec_node_page_state(new_req->pages[0], NR_WRITEBACK_TEMP); wb_writeout_inc(&bdi->wb); fuse_writepage_free(fc, new_req); fuse_request_free(new_req); |