Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5db42981 authored by Paul E. McKenney's avatar Paul E. McKenney Committed by Ingo Molnar
Browse files

lcoking/locktorture: Simplify the torture_runnable computation



This commit replaces an #ifdef with IS_ENABLED(), saving five lines.

Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: corbet@lwn.net
Cc: dave@stgolabs.net
Cc: dhowells@redhat.com
Cc: linux-doc@vger.kernel.org
Cc: will.deacon@arm.com
Link: http://lkml.kernel.org/r/1461691328-5429-4-git-send-email-paulmck@linux.vnet.ibm.com


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 3cfe2e8b
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -75,12 +75,7 @@ struct lock_stress_stats {
	long n_lock_acquired;
};

#if defined(MODULE)
#define LOCKTORTURE_RUNNABLE_INIT 1
#else
#define LOCKTORTURE_RUNNABLE_INIT 0
#endif
int torture_runnable = LOCKTORTURE_RUNNABLE_INIT;
int torture_runnable = IS_ENABLED(MODULE);
module_param(torture_runnable, int, 0444);
MODULE_PARM_DESC(torture_runnable, "Start locktorture at module init");