[PATCH 3/5] f2fs: report readonly status in ->fsync

From: Chao Yu
Date: Thu Dec 24 2015 - 05:08:44 EST


Report readonly status of filesystem during fsync.

Signed-off-by: Chao Yu <chao2.yu@xxxxxxxxxxx>
---
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


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/