lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Mon, 20 Jan 2014 12:25:33 +0800
From:	Joseph Qi <joseph.qi@...wei.com>
To:	<linux-ext4@...r.kernel.org>
Subject: [PATCH] ext4: use local variable journal when calling jbd2_journal_unlock_updates
 in ext4_freeze

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@...wei.com>
---
 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@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ