Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1403930 > unrolled thread
| Started by | Jaegeuk Kim <jaegeuk@kernel.org> |
|---|---|
| First post | 2016-05-19 21:10 +0200 |
| Last post | 2016-05-19 21:10 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] f2fs: avoid ENOSPC fault in the recovery process Jaegeuk Kim <jaegeuk@kernel.org> - 2016-05-19 21:10 +0200
| From | Jaegeuk Kim <jaegeuk@kernel.org> |
|---|---|
| Date | 2016-05-19 21:10 +0200 |
| Subject | [PATCH] f2fs: avoid ENOSPC fault in the recovery process |
| Message-ID | <rABux-3Nf-1@gated-at.bofh.it> |
This patch avoids impossible error injection, ENOSPC, during recovery process.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
---
fs/f2fs/recovery.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
index f89b70e..3d7216d 100644
--- a/fs/f2fs/recovery.c
+++ b/fs/f2fs/recovery.c
@@ -470,6 +470,10 @@ static int do_recover_data(struct f2fs_sb_info *sbi, struct inode *inode,
if (src == NULL_ADDR) {
err = reserve_new_block(&dn);
+#ifdef CONFIG_F2FS_FAULT_INJECTION
+ while (err)
+ err = reserve_new_block(&dn);
+#endif
/* We should not get -ENOSPC */
f2fs_bug_on(sbi, err);
}
--
2.6.3
Back to top | Article view | linux.kernel
csiph-web