linux-f2fs-devel.lists.sourceforge.net archive mirror
 help / color / mirror / Atom feed
* [PATCH 3/5] f2fs: report readonly status in ->fsync
@ 2015-12-24 10:07 Chao Yu
  2015-12-26  6:32 ` Marc Lehmann
  0 siblings, 1 reply; 7+ messages in thread
From: Chao Yu @ 2015-12-24 10:07 UTC (permalink / raw)
  To: Jaegeuk Kim; +Cc: linux-f2fs-devel, linux-kernel

Report readonly status of filesystem during fsync.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
---
 fs/f2fs/file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 2d87a3c..a60d088 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -197,7 +197,7 @@ int f2fs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
 	};
 
 	if (unlikely(f2fs_readonly(inode->i_sb)))
-		return 0;
+		return -EROFS;
 
 	trace_f2fs_sync_file_enter(inode);
 
-- 
2.6.3

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

end of thread, other threads:[~2015-12-30  6:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-24 10:07 [PATCH 3/5] f2fs: report readonly status in ->fsync Chao Yu
2015-12-26  6:32 ` Marc Lehmann
2015-12-28  9:59   ` Chao Yu
2015-12-28 22:43     ` Jaegeuk Kim
2015-12-29  6:21       ` Chao Yu
2015-12-30  0:32         ` Jaegeuk Kim
2015-12-30  6:46           ` Chao Yu

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).