diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-10-17 23:14:16 +0200 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-11-04 01:07:31 +0100 |
commit | af41d3ee00bf97bfc3bd64bce6d7a92e85955e98 (patch) | |
tree | 317fa5d31729a361bf39727701de5705fcbda239 /fs/f2fs/checkpoint.c | |
parent | f2fs: avoid build warning (diff) | |
download | linux-af41d3ee00bf97bfc3bd64bce6d7a92e85955e98.tar.xz linux-af41d3ee00bf97bfc3bd64bce6d7a92e85955e98.zip |
f2fs: avoid infinite loop at cp_error
This patch avoids an infinite loop in sync_dirty_inode_page when -EIO was
detected.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r-- | fs/f2fs/checkpoint.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index dd10a031c052..ca514d599b79 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -731,6 +731,9 @@ void sync_dirty_dir_inodes(struct f2fs_sb_info *sbi) struct dir_inode_entry *entry; struct inode *inode; retry: + if (unlikely(f2fs_cp_error(sbi))) + return; + spin_lock(&sbi->dir_inode_lock); head = &sbi->dir_inode_list; |