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

tip-bot2 for Ingo Molnar posted 1 patch 4 years, 3 months ago
kernel/sched/core.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
[tip: sched/core] sched/headers: Only include <linux/entry-common.h> when CONFIG_GENERIC_ENTRY=y
Posted by tip-bot2 for Ingo Molnar 4 years, 3 months ago
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@kernel.org>
AuthorDate:    Tue, 15 Mar 2022 10:33:53 +01:00
Committer:     Ingo Molnar <mingo@kernel.org>
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@kernel.org>
---
 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>