ChangeLog, problem.c:

problem.c: For PR_1_RESERVED_BAD_MODE, print a description of the
  	reserved inode.  In PR_0_JOURNAL_HAS_JOURNAL, prompt to clear the
  	journal, rather than deleting it (which is more accurate).  (From
  	Andreas Dilger.)
bitmap-optimize
Theodore Ts'o 2001-01-12 21:16:13 +00:00
parent 6a6d3d44d6
commit 37b6b2975f
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
2001-01-12 Theodore Ts'o <tytso@valinux.com>
* problem.c: For PR_1_RESERVED_BAD_MODE, print a description of
the reserved inode. In PR_0_JOURNAL_HAS_JOURNAL, prompt
to clear the journal, rather than deleting it (which is
more accurate). (From Andreas Dilger.)
* journal.c: Make sure all functions which return an error code
use the errcode_t return type, and not "int"
(e2fsck_journal_release): Add new parameter, "drop",

View File

@ -212,7 +212,7 @@ static const struct e2fsck_problem problem_table[] = {
/* Superblock flag should be cleared */
{ PR_0_JOURNAL_HAS_JOURNAL,
N_("@S doesn't have has_journal flag, but has ext3 @j %s.\n"),
PROMPT_DELETE, PR_PREEN_OK },
PROMPT_CLEAR, PR_PREEN_OK },
/* Superblock flag is incorrect */
{ PR_0_JOURNAL_RECOVER_SET,
@ -277,7 +277,7 @@ static const struct e2fsck_problem problem_table[] = {
/* Reserved inode has bad mode */
{ PR_1_RESERVED_BAD_MODE,
N_("Reserved @i %i has bad mode. "),
N_("Reserved @i %i %Q has bad mode. "),
PROMPT_CLEAR, PR_PREEN_OK },
/* Deleted inode has zero dtime */