linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fuse: set mapping error in writepage_locked when it fails
@ 2017-05-25 10:57 Jeff Layton
  2017-05-29 13:04 ` Miklos Szeredi
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff Layton @ 2017-05-25 10:57 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: linux-fsdevel, Christoph Hellwig, Jan Kara

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>
Reviewed-by: Jan Kara <jack@suse.cz>
---
 fs/fuse/file.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/fuse/file.c b/fs/fuse/file.c
index 3ee4fdc3da9e..18518298d109 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.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-05-30 10:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-25 10:57 [PATCH] fuse: set mapping error in writepage_locked when it fails Jeff Layton
2017-05-29 13:04 ` Miklos Szeredi
2017-05-30 10:26   ` Jeff Layton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).