Commit d9a45496 authored by Zhang Yi's avatar Zhang Yi Committed by Theodore Ts'o
Browse files

jbd2: drop useless error tag in jbd2_journal_wipe()



no_recovery is redundant, just drop it.

Signed-off-by: default avatarZhang Yi <yi.zhang@huawei.com>
Reviewed-by: default avatarJan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20230811063610.2980059-10-yi.zhang@huaweicloud.com


Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent 49887e47
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -2500,12 +2500,12 @@ int jbd2_journal_flush(journal_t *journal, unsigned int flags)

int jbd2_journal_wipe(journal_t *journal, int write)
{
	int err = 0;
	int err;

	J_ASSERT (!(journal->j_flags & JBD2_LOADED));

	if (!journal->j_tail)
		goto no_recovery;
		return 0;

	printk(KERN_WARNING "JBD2: %s recovery information on journal\n",
		write ? "Clearing" : "Ignoring");
@@ -2518,7 +2518,6 @@ int jbd2_journal_wipe(journal_t *journal, int write)
		mutex_unlock(&journal->j_checkpoint_mutex);
	}

 no_recovery:
	return err;
}