Commit d671002b authored by zhengbin's avatar zhengbin Committed by Ingo Molnar
Browse files

locking/lockdep: Remove unnecessary unlikely()



DEBUG_LOCKS_WARN_ON() already contains an unlikely(), there is no need
for another one.

Signed-off-by: default avatarzhengbin <zhengbin13@huawei.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Will Deacon <will.deacon@arm.com>
Cc: houtao1@huawei.com
Link: http://lkml.kernel.org/r/1556540791-23110-1-git-send-email-zhengbin13@huawei.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 94b5f312
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3256,7 +3256,7 @@ void lockdep_hardirqs_on(unsigned long ip)
	/*
	 * See the fine text that goes along with this variable definition.
	 */
	if (DEBUG_LOCKS_WARN_ON(unlikely(early_boot_irqs_disabled)))
	if (DEBUG_LOCKS_WARN_ON(early_boot_irqs_disabled))
		return;

	/*