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


Groups > linux.kernel > #1297803 > unrolled thread

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

Started byChao Yu <chao2.yu@samsung.com>
First post2015-12-24 11:10 +0100
Last post2015-12-24 11:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 3/5] f2fs: report readonly status in ->fsync Chao Yu <chao2.yu@samsung.com> - 2015-12-24 11:10 +0100

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

FromChao Yu <chao2.yu@samsung.com>
Date2015-12-24 11:10 +0100
Subject[PATCH 3/5] f2fs: report readonly status in ->fsync
Message-ID<qJb0m-5q6-9@gated-at.bofh.it>
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/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web