diff options
author | Luis R. Rodriguez <mcgrof@suse.com> | 2015-05-27 11:09:39 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-05-28 11:32:12 +0930 |
commit | 552f530cbc34072d824af021e3289fdd195c880d (patch) | |
tree | 182db11c35bbd5e3168e02ce53c1e0dc029b046d | |
parent | 154be21c582857c468575e7cab488fe39dc1445b (diff) | |
download | op-kernel-dev-552f530cbc34072d824af021e3289fdd195c880d.zip op-kernel-dev-552f530cbc34072d824af021e3289fdd195c880d.tar.gz |
kernel/workqueue.c: remove ifdefs over wq_power_efficient
We can avoid an ifdef over wq_power_efficient's declaration
by just using IS_ENABLED().
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Kees Cook <keescook@chromium.org>
Cc: Tejun Heo <tj@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: linux-kernel@vger.kernel.org
Cc: cocci@systeme.lip6.fr
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
-rw-r--r-- | kernel/workqueue.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 586ad91..59bc249 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -280,12 +280,7 @@ static bool wq_disable_numa; module_param_named(disable_numa, wq_disable_numa, bool, 0444); /* see the comment above the definition of WQ_POWER_EFFICIENT */ -#ifdef CONFIG_WQ_POWER_EFFICIENT_DEFAULT -static bool wq_power_efficient = true; -#else -static bool wq_power_efficient; -#endif - +static bool wq_power_efficient = IS_ENABLED(CONFIG_WQ_POWER_EFFICIENT_DEFAULT); module_param_named(power_efficient, wq_power_efficient, bool, 0444); static bool wq_numa_enabled; /* unbound NUMA affinity enabled */ |