aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2007-10-15 11:00:06 -0400
committerIngo Molnar <mingo@elte.hu>2007-10-15 11:00:06 -0400
commitbbdba7c0e1161934ae881ad00e4db49830f5ef59 (patch)
tree1c5c5e9c9c0c6d6cb72b843121e7a38f2768356a /include
parente22f5bbf86d8cce710d5c8ba5bf57832e73aab8c (diff)
sched: remove wait_runtime fields and features
remove wait_runtime based fields and features, now that the CFS math has been changed over to the vruntime metric. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Mike Galbraith <efault@gmx.de> Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/sched.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 353630d6ae4b..572df1bbaeec 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -888,13 +888,9 @@ struct load_weight {
888 * 4 se->block_start 888 * 4 se->block_start
889 * 4 se->run_node 889 * 4 se->run_node
890 * 4 se->sleep_start 890 * 4 se->sleep_start
891 * 4 se->sleep_start_fair
892 * 6 se->load.weight 891 * 6 se->load.weight
893 * 7 se->delta_fair
894 * 15 se->wait_runtime
895 */ 892 */
896struct sched_entity { 893struct sched_entity {
897 long wait_runtime;
898 s64 fair_key; 894 s64 fair_key;
899 struct load_weight load; /* for load-balancing */ 895 struct load_weight load; /* for load-balancing */
900 struct rb_node run_node; 896 struct rb_node run_node;
@@ -904,12 +900,10 @@ struct sched_entity {
904 u64 sum_exec_runtime; 900 u64 sum_exec_runtime;
905 u64 vruntime; 901 u64 vruntime;
906 u64 prev_sum_exec_runtime; 902 u64 prev_sum_exec_runtime;
907 u64 wait_start_fair;
908 903
909#ifdef CONFIG_SCHEDSTATS 904#ifdef CONFIG_SCHEDSTATS
910 u64 wait_start; 905 u64 wait_start;
911 u64 wait_max; 906 u64 wait_max;
912 s64 sum_wait_runtime;
913 907
914 u64 sleep_start; 908 u64 sleep_start;
915 u64 sleep_max; 909 u64 sleep_max;
@@ -919,9 +913,6 @@ struct sched_entity {
919 u64 block_max; 913 u64 block_max;
920 u64 exec_max; 914 u64 exec_max;
921 u64 slice_max; 915 u64 slice_max;
922
923 unsigned long wait_runtime_overruns;
924 unsigned long wait_runtime_underruns;
925#endif 916#endif
926 917
927#ifdef CONFIG_FAIR_GROUP_SCHED 918#ifdef CONFIG_FAIR_GROUP_SCHED