fuse: decrement NR_WRITEBACK_TEMP on the right page
commita2ebba8241
upstream. NR_WRITEBACK_TEMP is accounted on the temporary page in the request, not the page cache page. Fixes:8b284dc472
("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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
65f222bb37
commit
b928e93d86
@ -1777,7 +1777,7 @@ static bool fuse_writepage_in_flight(struct fuse_req *new_req,
|
|||||||
spin_unlock(&fc->lock);
|
spin_unlock(&fc->lock);
|
||||||
|
|
||||||
dec_wb_stat(&bdi->wb, WB_WRITEBACK);
|
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);
|
wb_writeout_inc(&bdi->wb);
|
||||||
fuse_writepage_free(fc, new_req);
|
fuse_writepage_free(fc, new_req);
|
||||||
fuse_request_free(new_req);
|
fuse_request_free(new_req);
|
||||||
|
Reference in New Issue
Block a user