diff options
Diffstat (limited to 'kernel/sched_debug.c')
| -rw-r--r-- | kernel/sched_debug.c | 97 |
1 files changed, 62 insertions, 35 deletions
diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c index 5ae17762ec32..baf2f17af462 100644 --- a/kernel/sched_debug.c +++ b/kernel/sched_debug.c | |||
| @@ -53,6 +53,40 @@ static unsigned long nsec_low(unsigned long long nsec) | |||
| 53 | 53 | ||
| 54 | #define SPLIT_NS(x) nsec_high(x), nsec_low(x) | 54 | #define SPLIT_NS(x) nsec_high(x), nsec_low(x) |
| 55 | 55 | ||
| 56 | #ifdef CONFIG_FAIR_GROUP_SCHED | ||
| 57 | static void print_cfs_group_stats(struct seq_file *m, int cpu, | ||
| 58 | struct task_group *tg) | ||
| 59 | { | ||
| 60 | struct sched_entity *se = tg->se[cpu]; | ||
| 61 | if (!se) | ||
| 62 | return; | ||
| 63 | |||
| 64 | #define P(F) \ | ||
| 65 | SEQ_printf(m, " .%-30s: %lld\n", #F, (long long)F) | ||
| 66 | #define PN(F) \ | ||
| 67 | SEQ_printf(m, " .%-30s: %lld.%06ld\n", #F, SPLIT_NS((long long)F)) | ||
| 68 | |||
| 69 | PN(se->exec_start); | ||
| 70 | PN(se->vruntime); | ||
| 71 | PN(se->sum_exec_runtime); | ||
| 72 | #ifdef CONFIG_SCHEDSTATS | ||
| 73 | PN(se->wait_start); | ||
| 74 | PN(se->sleep_start); | ||
| 75 | PN(se->block_start); | ||
| 76 | PN(se->sleep_max); | ||
| 77 | PN(se->block_max); | ||
| 78 | PN(se->exec_max); | ||
| 79 | PN(se->slice_max); | ||
| 80 | PN(se->wait_max); | ||
| 81 | PN(se->wait_sum); | ||
| 82 | P(se->wait_count); | ||
| 83 | #endif | ||
| 84 | P(se->load.weight); | ||
| 85 | #undef PN | ||
| 86 | #undef P | ||
| 87 | } | ||
| 88 | #endif | ||
| 89 | |||
| 56 | static void | 90 | static void |
| 57 | print_task(struct seq_file *m, struct rq *rq, struct task_struct *p) | 91 | print_task(struct seq_file *m, struct rq *rq, struct task_struct *p) |
| 58 | { | 92 | { |
| @@ -121,14 +155,9 @@ void print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq) | |||
| 121 | 155 | ||
| 122 | #if defined(CONFIG_CGROUP_SCHED) && defined(CONFIG_FAIR_GROUP_SCHED) | 156 | #if defined(CONFIG_CGROUP_SCHED) && defined(CONFIG_FAIR_GROUP_SCHED) |
| 123 | char path[128] = ""; | 157 | char path[128] = ""; |
| 124 | struct cgroup *cgroup = NULL; | ||
| 125 | struct task_group *tg = cfs_rq->tg; | 158 | struct task_group *tg = cfs_rq->tg; |
| 126 | 159 | ||
| 127 | if (tg) | 160 | cgroup_path(tg->css.cgroup, path, sizeof(path)); |
| 128 | cgroup = tg->css.cgroup; | ||
| 129 | |||
| 130 | if (cgroup) | ||
| 131 | cgroup_path(cgroup, path, sizeof(path)); | ||
| 132 | 161 | ||
| 133 | SEQ_printf(m, "\ncfs_rq[%d]:%s\n", cpu, path); | 162 | SEQ_printf(m, "\ncfs_rq[%d]:%s\n", cpu, path); |
| 134 | #else | 163 | #else |
| @@ -144,7 +173,7 @@ void print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq) | |||
| 144 | last = __pick_last_entity(cfs_rq); | 173 | last = __pick_last_entity(cfs_rq); |
| 145 | if (last) | 174 | if (last) |
| 146 | max_vruntime = last->vruntime; | 175 | max_vruntime = last->vruntime; |
| 147 | min_vruntime = rq->cfs.min_vruntime; | 176 | min_vruntime = cfs_rq->min_vruntime; |
| 148 | rq0_min_vruntime = per_cpu(runqueues, 0).cfs.min_vruntime; | 177 | rq0_min_vruntime = per_cpu(runqueues, 0).cfs.min_vruntime; |
| 149 | spin_unlock_irqrestore(&rq->lock, flags); | 178 | spin_unlock_irqrestore(&rq->lock, flags); |
| 150 | SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "MIN_vruntime", | 179 | SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "MIN_vruntime", |
| @@ -161,31 +190,14 @@ void print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq) | |||
| 161 | SPLIT_NS(spread0)); | 190 | SPLIT_NS(spread0)); |
| 162 | SEQ_printf(m, " .%-30s: %ld\n", "nr_running", cfs_rq->nr_running); | 191 | SEQ_printf(m, " .%-30s: %ld\n", "nr_running", cfs_rq->nr_running); |
| 163 | SEQ_printf(m, " .%-30s: %ld\n", "load", cfs_rq->load.weight); | 192 | SEQ_printf(m, " .%-30s: %ld\n", "load", cfs_rq->load.weight); |
| 164 | #ifdef CONFIG_SCHEDSTATS | ||
| 165 | #define P(n) SEQ_printf(m, " .%-30s: %d\n", #n, rq->n); | ||
| 166 | |||
| 167 | P(yld_exp_empty); | ||
| 168 | P(yld_act_empty); | ||
| 169 | P(yld_both_empty); | ||
| 170 | P(yld_count); | ||
| 171 | |||
| 172 | P(sched_switch); | ||
| 173 | P(sched_count); | ||
| 174 | P(sched_goidle); | ||
| 175 | |||
| 176 | P(ttwu_count); | ||
| 177 | P(ttwu_local); | ||
| 178 | |||
| 179 | P(bkl_count); | ||
| 180 | 193 | ||
| 181 | #undef P | 194 | SEQ_printf(m, " .%-30s: %d\n", "nr_spread_over", |
| 182 | #endif | ||
| 183 | SEQ_printf(m, " .%-30s: %ld\n", "nr_spread_over", | ||
| 184 | cfs_rq->nr_spread_over); | 195 | cfs_rq->nr_spread_over); |
| 185 | #ifdef CONFIG_FAIR_GROUP_SCHED | 196 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 186 | #ifdef CONFIG_SMP | 197 | #ifdef CONFIG_SMP |
| 187 | SEQ_printf(m, " .%-30s: %lu\n", "shares", cfs_rq->shares); | 198 | SEQ_printf(m, " .%-30s: %lu\n", "shares", cfs_rq->shares); |
| 188 | #endif | 199 | #endif |
| 200 | print_cfs_group_stats(m, cpu, cfs_rq->tg); | ||
| 189 | #endif | 201 | #endif |
| 190 | } | 202 | } |
| 191 | 203 | ||
| @@ -193,14 +205,9 @@ void print_rt_rq(struct seq_file *m, int cpu, struct rt_rq *rt_rq) | |||
| 193 | { | 205 | { |
| 194 | #if defined(CONFIG_CGROUP_SCHED) && defined(CONFIG_RT_GROUP_SCHED) | 206 | #if defined(CONFIG_CGROUP_SCHED) && defined(CONFIG_RT_GROUP_SCHED) |
| 195 | char path[128] = ""; | 207 | char path[128] = ""; |
| 196 | struct cgroup *cgroup = NULL; | ||
| 197 | struct task_group *tg = rt_rq->tg; | 208 | struct task_group *tg = rt_rq->tg; |
| 198 | 209 | ||
| 199 | if (tg) | 210 | cgroup_path(tg->css.cgroup, path, sizeof(path)); |
| 200 | cgroup = tg->css.cgroup; | ||
| 201 | |||
| 202 | if (cgroup) | ||
| 203 | cgroup_path(cgroup, path, sizeof(path)); | ||
| 204 | 211 | ||
| 205 | SEQ_printf(m, "\nrt_rq[%d]:%s\n", cpu, path); | 212 | SEQ_printf(m, "\nrt_rq[%d]:%s\n", cpu, path); |
| 206 | #else | 213 | #else |
| @@ -260,6 +267,25 @@ static void print_cpu(struct seq_file *m, int cpu) | |||
| 260 | #undef P | 267 | #undef P |
| 261 | #undef PN | 268 | #undef PN |
| 262 | 269 | ||
| 270 | #ifdef CONFIG_SCHEDSTATS | ||
| 271 | #define P(n) SEQ_printf(m, " .%-30s: %d\n", #n, rq->n); | ||
| 272 | |||
| 273 | P(yld_exp_empty); | ||
| 274 | P(yld_act_empty); | ||
| 275 | P(yld_both_empty); | ||
| 276 | P(yld_count); | ||
| 277 | |||
| 278 | P(sched_switch); | ||
| 279 | P(sched_count); | ||
| 280 | P(sched_goidle); | ||
| 281 | |||
| 282 | P(ttwu_count); | ||
| 283 | P(ttwu_local); | ||
| 284 | |||
| 285 | P(bkl_count); | ||
| 286 | |||
| 287 | #undef P | ||
| 288 | #endif | ||
| 263 | print_cfs_stats(m, cpu); | 289 | print_cfs_stats(m, cpu); |
| 264 | print_rt_stats(m, cpu); | 290 | print_rt_stats(m, cpu); |
| 265 | 291 | ||
| @@ -271,7 +297,7 @@ static int sched_debug_show(struct seq_file *m, void *v) | |||
| 271 | u64 now = ktime_to_ns(ktime_get()); | 297 | u64 now = ktime_to_ns(ktime_get()); |
| 272 | int cpu; | 298 | int cpu; |
| 273 | 299 | ||
| 274 | SEQ_printf(m, "Sched Debug Version: v0.07, %s %.*s\n", | 300 | SEQ_printf(m, "Sched Debug Version: v0.08, %s %.*s\n", |
| 275 | init_utsname()->release, | 301 | init_utsname()->release, |
| 276 | (int)strcspn(init_utsname()->version, " "), | 302 | (int)strcspn(init_utsname()->version, " "), |
| 277 | init_utsname()->version); | 303 | init_utsname()->version); |
| @@ -422,10 +448,11 @@ void proc_sched_show_task(struct task_struct *p, struct seq_file *m) | |||
| 422 | #undef __P | 448 | #undef __P |
| 423 | 449 | ||
| 424 | { | 450 | { |
| 451 | unsigned int this_cpu = raw_smp_processor_id(); | ||
| 425 | u64 t0, t1; | 452 | u64 t0, t1; |
| 426 | 453 | ||
| 427 | t0 = sched_clock(); | 454 | t0 = cpu_clock(this_cpu); |
| 428 | t1 = sched_clock(); | 455 | t1 = cpu_clock(this_cpu); |
| 429 | SEQ_printf(m, "%-35s:%21Ld\n", | 456 | SEQ_printf(m, "%-35s:%21Ld\n", |
| 430 | "clock-delta", (long long)(t1-t0)); | 457 | "clock-delta", (long long)(t1-t0)); |
| 431 | } | 458 | } |
