From 9cdb148a2723fc7355e415b843e9738b68c03403 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Sun, 14 Aug 2016 21:50:09 +0200 Subject: [PATCH] fix up queue-3.14/ext4-fix-reference-counting-bug-on-block-allocation-error.patch --- ...fix-reference-counting-bug-on-block-allocation-error.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/queue-3.14/ext4-fix-reference-counting-bug-on-block-allocation-error.patch b/queue-3.14/ext4-fix-reference-counting-bug-on-block-allocation-error.patch index 3211d532f73..0626bdb78e1 100644 --- a/queue-3.14/ext4-fix-reference-counting-bug-on-block-allocation-error.patch +++ b/queue-3.14/ext4-fix-reference-counting-bug-on-block-allocation-error.patch @@ -39,7 +39,7 @@ Signed-off-by: Greg Kroah-Hartman "fs metadata", block, block+len); /* File system mounted not to panic on error - * Fix the bitmap and repeat the block allocation -+ * Fix the bitmap and return EFSCORRUPTED ++ * Fix the bitmap and return EUCLEAN * We leak some of the blocks here. */ ext4_lock_group(sb, ac->ac_b_ex.fe_group); @@ -48,7 +48,7 @@ Signed-off-by: Greg Kroah-Hartman err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh); if (!err) - err = -EAGAIN; -+ err = -EFSCORRUPTED; ++ err = -EUCLEAN; goto out_err; } -- 2.47.3