From: Theodore Ts'o Date: Thu, 28 May 2009 21:05:40 +0000 (-0400) Subject: e2fsck: if i_file_acl_hi is non-zero, fix it and don't abort e2fsck -p X-Git-Tag: v1.41.6~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6bb99feb9f7fc32835feeddc5648a10e29f070e;p=thirdparty%2Fe2fsprogs.git e2fsck: if i_file_acl_hi is non-zero, fix it and don't abort e2fsck -p Ext3 filesystems don't care if i_file_acl_hi is non-zero in some inode, and newer kernels should ignore this field (although 2.6.29 and older kernels will not). So e2fsck should fix this without aborting an e2fsck preen operation. Addresses-Debian-Bug: #526524 Signed-off-by: "Theodore Ts'o" --- diff --git a/e2fsck/problem.c b/e2fsck/problem.c index 38cb1f43a..43a0aa64c 100644 --- a/e2fsck/problem.c +++ b/e2fsck/problem.c @@ -1289,7 +1289,7 @@ static struct e2fsck_problem problem_table[] = { /* i_blocks_hi should be zero */ { PR_2_I_FILE_ACL_HI_ZERO, N_("i_file_acl_hi @F %N, @s zero.\n"), - PROMPT_CLEAR, 0 }, + PROMPT_CLEAR, PR_PREEN_OK }, /* Pass 3 errors */