Local variable journal is already defined for EXT4_SB(sb)->s_journal in ext4_freeze, so just use it when calling jbd2_journal_unlock_updates. Signed-off-by: Joseph Qi <joseph.qi@xxxxxxxxxx> --- fs/ext4/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ext4/super.c b/fs/ext4/super.c index c977f4e..e151d35 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -4700,7 +4700,7 @@ static int ext4_freeze(struct super_block *sb) error = ext4_commit_super(sb, 1); out: /* we rely on upper layer to stop further updates */ - jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal); + jbd2_journal_unlock_updates(journal); return error; } -- 1.8.4.3 -- 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