mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
sched/headers: Move the 'cpu_idle_type' enum from <linux/sched.h> to <linux/sched/idle.h>
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>
This commit is contained in:
parent
a60b9eda67
commit
b768917d2c
2 changed files with 7 additions and 7 deletions
|
@ -943,13 +943,6 @@ static inline int sched_info_on(void)
|
|||
void force_schedstat_enabled(void);
|
||||
#endif
|
||||
|
||||
enum cpu_idle_type {
|
||||
CPU_IDLE,
|
||||
CPU_NOT_IDLE,
|
||||
CPU_NEWLY_IDLE,
|
||||
CPU_MAX_IDLE_TYPES
|
||||
};
|
||||
|
||||
/*
|
||||
* Integer metrics need fixed point arithmetic, e.g., sched/fair
|
||||
* has a few: load, load_avg, util_avg, freq, and capacity.
|
||||
|
|
|
@ -3,4 +3,11 @@
|
|||
|
||||
#include <linux/sched.h>
|
||||
|
||||
enum cpu_idle_type {
|
||||
CPU_IDLE,
|
||||
CPU_NOT_IDLE,
|
||||
CPU_NEWLY_IDLE,
|
||||
CPU_MAX_IDLE_TYPES
|
||||
};
|
||||
|
||||
#endif /* _LINUX_SCHED_IDLE_H */
|
||||
|
|
Loading…
Reference in a new issue