]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
fix up queue-3.14/ext4-fix-reference-counting-bug-on-block-allocation-error.patch
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 14 Aug 2016 19:50:09 +0000 (21:50 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 14 Aug 2016 19:50:09 +0000 (21:50 +0200)
queue-3.14/ext4-fix-reference-counting-bug-on-block-allocation-error.patch

index 3211d532f737a4de3f2034a8e6b4e68eb8628138..0626bdb78e1a60f8c483ed4194d8e81060a8467d 100644 (file)
@@ -39,7 +39,7 @@ Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
                           "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 <gregkh@linuxfoundation.org>
                err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
                if (!err)
 -                      err = -EAGAIN;
-+                      err = -EFSCORRUPTED;
++                      err = -EUCLEAN;
                goto out_err;
        }