All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tune2fs: allow removal of dirty journal with two "-f" options
@ 2014-01-09 20:08 Eric Sandeen
  2014-02-21  1:34 ` Theodore Ts'o
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Sandeen @ 2014-01-09 20:08 UTC (permalink / raw)
  To: ext4 development; +Cc: james.faulkner

Jim pointed out that "tune2fs -f -O ^has_journal" won't remove the
journal if the needs_recovery flag is set; the manpage seems to indicate
that it should.  And if you've lost an external journal and can no longer
replay it, how should one proceed?

Change tune2fs so that two "-f" options will allow removal of a dirty
journal from a filesystem, even if the filesystem needs recovery.

e2fsck can then do its best to pick up the pieces.

Reported-by: Jim Faulkner <james.faulkner@yale.edu>
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---

diff --git a/misc/tune2fs.8.in b/misc/tune2fs.8.in
index da21080..e07da28 100644
--- a/misc/tune2fs.8.in
+++ b/misc/tune2fs.8.in
@@ -248,7 +248,10 @@ option is useful when removing the
 filesystem feature from a filesystem which has 
 an external journal (or is corrupted
 such that it appears to have an external journal), but that 
-external journal is not available.   
+external journal is not available.   If the filesystem appears to require
+journal replay, the
+.B \-f
+flag must be specified twice to proceed.
 .sp
 .B WARNING:
 Removing an external journal from a filesystem which was not cleanly unmounted
diff --git a/misc/tune2fs.c b/misc/tune2fs.c
index 0eddf6d..2318dbb 100644
--- a/misc/tune2fs.c
+++ b/misc/tune2fs.c
@@ -903,8 +903,9 @@ static int update_feature_set(ext2_filsys fs, char *features)
 				"read-only.\n"), stderr);
 			return 1;
 		}
-		if (sb->s_feature_incompat &
-		    EXT3_FEATURE_INCOMPAT_RECOVER) {
+		if ((sb->s_feature_incompat &
+		    EXT3_FEATURE_INCOMPAT_RECOVER) && 
+		    f_flag < 2) {
 			fputs(_("The needs_recovery flag is set.  "
 				"Please run e2fsck before clearing\n"
 				"the has_journal flag.\n"), stderr);
@@ -1428,7 +1429,7 @@ static void parse_tune2fs_options(int argc, char **argv)
 			open_flag |= EXT2_FLAG_RW;
 			break;
 		case 'f': /* Force */
-			f_flag = 1;
+			f_flag++;
 			break;
 		case 'g':
 			resgid = strtoul(optarg, &tmp, 0);


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] tune2fs: allow removal of dirty journal with two "-f" options
  2014-01-09 20:08 [PATCH] tune2fs: allow removal of dirty journal with two "-f" options Eric Sandeen
@ 2014-02-21  1:34 ` Theodore Ts'o
  0 siblings, 0 replies; 2+ messages in thread
From: Theodore Ts'o @ 2014-02-21  1:34 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: ext4 development, james.faulkner

On Thu, Jan 09, 2014 at 02:08:11PM -0600, Eric Sandeen wrote:
> Jim pointed out that "tune2fs -f -O ^has_journal" won't remove the
> journal if the needs_recovery flag is set; the manpage seems to indicate
> that it should.  And if you've lost an external journal and can no longer
> replay it, how should one proceed?
> 
> Change tune2fs so that two "-f" options will allow removal of a dirty
> journal from a filesystem, even if the filesystem needs recovery.
> 
> e2fsck can then do its best to pick up the pieces.
> 
> Reported-by: Jim Faulkner <james.faulkner@yale.edu>
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>

Thanks, applied.

					- Ted

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-02-21  1:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-09 20:08 [PATCH] tune2fs: allow removal of dirty journal with two "-f" options Eric Sandeen
2014-02-21  1:34 ` Theodore Ts'o

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.