In the original patch (against -next), the hunk to fix uninit dirs was just prior to the hunk labelled "Corrupt but passes checks?". The hunks are ordered this way so that if e2fsck obtains permission to fix a failed-csum extent (which in turn fixes the checksum), it will not subsequently ask to (re)fix the checksum. Due to a merge error the hunk moved to the wrong place, so put it back. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- e2fsck/pass1.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/e2fsck/pass1.c b/e2fsck/pass1.c index c116e1c..a6552e5 100644 --- a/e2fsck/pass1.c +++ b/e2fsck/pass1.c @@ -2009,19 +2009,6 @@ static void scan_extent_node(e2fsck_t ctx, struct problem_context *pctx, (1 << (21 - ctx->fs->super->s_log_block_size)))) problem = PR_1_TOOBIG_DIR; - /* Corrupt but passes checks? Ask to fix checksum. */ - if (try_repairs && failed_csum) { - pctx->blk = extent.e_pblk; - pctx->blk2 = extent.e_lblk; - pctx->num = extent.e_len; - problem = 0; - if (fix_problem(ctx, PR_1_EXTENT_ONLY_CSUM_INVALID, - pctx)) { - pb->inode_modified = 1; - ext2fs_extent_replace(ehandle, 0, &extent); - } - } - /* * Uninitialized blocks in a directory? Clear the flag and * we'll interpret the blocks later. @@ -2038,6 +2025,19 @@ static void scan_extent_node(e2fsck_t ctx, struct problem_context *pctx, failed_csum = 0; } + /* Corrupt but passes checks? Ask to fix checksum. */ + if (try_repairs && failed_csum) { + pctx->blk = extent.e_pblk; + pctx->blk2 = extent.e_lblk; + pctx->num = extent.e_len; + problem = 0; + if (fix_problem(ctx, PR_1_EXTENT_ONLY_CSUM_INVALID, + pctx)) { + pb->inode_modified = 1; + ext2fs_extent_replace(ehandle, 0, &extent); + } + } + if (try_repairs && problem) { report_problem: pctx->blk = extent.e_pblk; -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html