[tip: sched/core] sched/headers: Only include <linux/entry-common.h> when CONFIG_GENERIC_ENTRY=y

From: tip-bot2 for Ingo Molnar
Date: Tue Mar 15 2022 - 05:37:37 EST


The following commit has been merged into the sched/core branch of tip:

Commit-ID: a7b2553b5ece1aba4b5994eef150d0a1269b5805
Gitweb: https://git.kernel.org/tip/a7b2553b5ece1aba4b5994eef150d0a1269b5805
Author: Ingo Molnar <mingo@xxxxxxxxxx>
AuthorDate: Tue, 15 Mar 2022 10:33:53 +01:00
Committer: Ingo Molnar <mingo@xxxxxxxxxx>
CommitterDate: Tue, 15 Mar 2022 10:33:53 +01:00

sched/headers: Only include <linux/entry-common.h> when CONFIG_GENERIC_ENTRY=y

This header is not (yet) standalone.

Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx>
---
kernel/sched/core.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index aa9e14c..bf443f4 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -63,7 +63,9 @@
#include <linux/workqueue_api.h>

#ifdef CONFIG_PREEMPT_DYNAMIC
-# include <linux/entry-common.h>
+# ifdef CONFIG_GENERIC_ENTRY
+# include <linux/entry-common.h>
+# endif
#endif

#include <uapi/linux/sched/types.h>