summaryrefslogtreecommitdiff
path: root/kernel/sched/debug.c
diff options
context:
space:
mode:
authorSyed Rameez Mustafa <rameezmustafa@codeaurora.org>2015-06-19 12:28:24 -0700
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 20:02:19 -0700
commitd590f251533a39ac3f061dcf6e9e3b9cf8a89b4d (patch)
tree74413a03fb3cb41abfe11909bb69478d27159fb3 /kernel/sched/debug.c
parentf2ea07a15551d8cb9002c833dd4307857efb3a6b (diff)
sched: remove the notion of small tasks and small task packing
Task packing will now be determined solely on the basis of the power cost of task placement. All tasks are eligible for packing. Remove the notion of "small" tasks from the scheduler. Change-Id: I72d52d04b2677c6a8d0bc6aa7d50ff0f1a4f5ebb Signed-off-by: Syed Rameez Mustafa <rameezmustafa@codeaurora.org>
Diffstat (limited to 'kernel/sched/debug.c')
-rw-r--r--kernel/sched/debug.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/sched/debug.c b/kernel/sched/debug.c
index 1154330bda65..00e80d430455 100644
--- a/kernel/sched/debug.c
+++ b/kernel/sched/debug.c
@@ -232,8 +232,6 @@ void print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq)
#ifdef CONFIG_SCHED_HMP
SEQ_printf(m, " .%-30s: %d\n", "nr_big_tasks",
cfs_rq->hmp_stats.nr_big_tasks);
- SEQ_printf(m, " .%-30s: %d\n", "nr_small_tasks",
- cfs_rq->hmp_stats.nr_small_tasks);
SEQ_printf(m, " .%-30s: %llu\n", "cumulative_runnable_avg",
cfs_rq->hmp_stats.cumulative_runnable_avg);
#endif
@@ -331,7 +329,6 @@ do { \
#endif
#ifdef CONFIG_SCHED_HMP
P(hmp_stats.nr_big_tasks);
- P(hmp_stats.nr_small_tasks);
SEQ_printf(m, " .%-30s: %llu\n", "hmp_stats.cumulative_runnable_avg",
rq->hmp_stats.cumulative_runnable_avg);
#endif
@@ -416,7 +413,6 @@ static void sched_debug_header(struct seq_file *m)
P(sysctl_sched_child_runs_first);
P(sysctl_sched_features);
#ifdef CONFIG_SCHED_HMP
- P(sched_small_task);
P(sched_upmigrate);
P(sched_downmigrate);
P(sched_init_task_load_windows);