Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1297803
| From | Chao Yu <chao2.yu@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 3/5] f2fs: report readonly status in ->fsync |
| Date | 2015-12-24 11:10 +0100 |
| Message-ID | <qJb0m-5q6-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 3/5] f2fs: report readonly status in ->fsync Chao Yu <chao2.yu@samsung.com> - 2015-12-24 11:10 +0100
csiph-web