Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1638237

[PATCH v4 11/27] fuse: set mapping error in writepage_locked when it fails

From Jeff Layton <jlayton@redhat.com>
Newsgroups linux.kernel
Subject [PATCH v4 11/27] fuse: set mapping error in writepage_locked when it fails
Date 2017-05-09 18:00 +0200
Message-ID <tFfIo-3IS-71@gated-at.bofh.it> (permalink)
References <tFfIm-3IS-7@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


This ensures that we see errors on fsync when writeback fails.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
---
 fs/fuse/file.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/fuse/file.c b/fs/fuse/file.c
index ec238fb5a584..07d0efcb050c 100644
--- a/fs/fuse/file.c
+++ b/fs/fuse/file.c
@@ -1669,6 +1669,7 @@ static int fuse_writepage_locked(struct page *page)
 err_free:
 	fuse_request_free(req);
 err:
+	mapping_set_error(page->mapping, error);
 	end_page_writeback(page);
 	return error;
 }
-- 
2.9.3

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v4 11/27] fuse: set mapping error in writepage_locked when it fails Jeff Layton <jlayton@redhat.com> - 2017-05-09 18:00 +0200
  Re: [PATCH v4 11/27] fuse: set mapping error in writepage_locked  when it fails Jan Kara <jack@suse.cz> - 2017-05-10 13:20 +0200

csiph-web