aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2015-01-09 19:27:17 -0500
committerJaegeuk Kim <jaegeuk@kernel.org>2015-02-11 20:04:30 -0500
commit871f599f4a869d24ef98b0217f19f0cc55ff59ac (patch)
tree24bfdfff79ff3b008a8996dc88f210659a12edfc /fs
parent08e4126e1e91b01bea5c71980e7008ec5075d701 (diff)
f2fs: avoid infinite loop on cp_error
If cp_error is set, we should avoid all the infinite loop. In f2fs_sync_file, there is a hole, and this patch fixes that. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/file.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 5df336757d6c..710adc987937 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -247,6 +247,10 @@ go_write:
247sync_nodes: 247sync_nodes:
248 sync_node_pages(sbi, ino, &wbc); 248 sync_node_pages(sbi, ino, &wbc);
249 249
250 /* if cp_error was enabled, we should avoid infinite loop */
251 if (unlikely(f2fs_cp_error(sbi)))
252 goto out;
253
250 if (need_inode_block_update(sbi, ino)) { 254 if (need_inode_block_update(sbi, ino)) {
251 mark_inode_dirty_sync(inode); 255 mark_inode_dirty_sync(inode);
252 f2fs_write_inode(inode, NULL); 256 f2fs_write_inode(inode, NULL);