sched/headers: Prepare for new header dependencies before moving code to <linux/sched/idle.h>

We are going to split  <linux/sched/idle.h> out of <linux/sched.h>, which
will have to be picked up from other headers and a couple of .c files.

Create a trivial placeholder <linux/sched/idle.h> file that just
maps to <linux/sched.h> to make this patch obviously correct and
bisectable.

Include the new header in the files that are going to need it.

Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
tirimbino
Ingo Molnar 8 years ago
parent 105ab3d8ce
commit 4c822698cb
  1. 1
      arch/x86/include/asm/mwait.h
  2. 1
      arch/x86/kernel/process.c
  3. 1
      drivers/cpuidle/driver.c
  4. 6
      include/linux/sched/idle.h
  5. 2
      include/linux/sched/topology.h
  6. 1
      kernel/sched/idle.c
  7. 1
      kernel/smp.c

@ -2,6 +2,7 @@
#define _ASM_X86_MWAIT_H
#include <linux/sched.h>
#include <linux/sched/idle.h>
#include <asm/cpufeature.h>

@ -7,6 +7,7 @@
#include <linux/prctl.h>
#include <linux/slab.h>
#include <linux/sched.h>
#include <linux/sched/idle.h>
#include <linux/init.h>
#include <linux/export.h>
#include <linux/pm.h>

@ -11,6 +11,7 @@
#include <linux/mutex.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/sched/idle.h>
#include <linux/cpuidle.h>
#include <linux/cpumask.h>
#include <linux/tick.h>

@ -0,0 +1,6 @@
#ifndef _LINUX_SCHED_IDLE_H
#define _LINUX_SCHED_IDLE_H
#include <linux/sched.h>
#endif /* _LINUX_SCHED_IDLE_H */

@ -3,4 +3,6 @@
#include <linux/sched.h>
#include <linux/sched/idle.h>
#endif /* _LINUX_SCHED_TOPOLOGY_H */

@ -2,6 +2,7 @@
* Generic entry point for the idle threads
*/
#include <linux/sched.h>
#include <linux/sched/idle.h>
#include <linux/cpu.h>
#include <linux/cpuidle.h>
#include <linux/cpuhotplug.h>

@ -17,6 +17,7 @@
#include <linux/smp.h>
#include <linux/cpu.h>
#include <linux/sched.h>
#include <linux/sched/idle.h>
#include <linux/hypervisor.h>
#include "smpboot.h"

Loading…
Cancel
Save