From: Peter Zijlstra Date: Wed, 29 Aug 2018 09:45:21 +0000 (+0200) Subject: sched/debug: Explicitly cast sched_feat() to bool X-Git-Tag: rel_imx_5.10.35_2.0.0-somdevices.0~6125^2~13 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=7e6f4c5d600c1c8e2a1d900e65cab319d9b6782e;p=linux.git sched/debug: Explicitly cast sched_feat() to bool LLVM has a warning that tags expressions like: if (foo && non-bool-const) This pattern triggers for CONFIG_SCHED_DEBUG=n where sched_feat() ends up being whatever bit we select. Avoid the warning with an explicit cast to bool. Reported-by: Philipp Klocke Tested-by: Nick Desaulniers Signed-off-by: Peter Zijlstra (Intel) Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: linux-kernel@vger.kernel.org Signed-off-by: Ingo Molnar --- diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h index 85b3a2bf6c2b..3a4ef8f73f08 100644 --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h @@ -1401,7 +1401,7 @@ static const_debug __maybe_unused unsigned int sysctl_sched_features = 0; #undef SCHED_FEAT -#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x)) +#define sched_feat(x) !!(sysctl_sched_features & (1UL << __SCHED_FEAT_##x)) #endif /* SCHED_DEBUG && HAVE_JUMP_LABEL */