diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2009-07-20 11:26:58 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-02 08:44:08 +0200 |
commit | 8f0dfc34e9b323a028c2ec41abb7e9de477b7a94 (patch) | |
tree | fa7e44d9ad3eb22517f0724e71f9812f71a16ae2 /kernel/sched_debug.c | |
parent | f14eff1cc2f418a7c5e23aedc6a1bdca3343b871 (diff) | |
download | op-kernel-dev-8f0dfc34e9b323a028c2ec41abb7e9de477b7a94.zip op-kernel-dev-8f0dfc34e9b323a028c2ec41abb7e9de477b7a94.tar.gz |
sched: Provide iowait counters
For counting how long an application has been waiting for
(disk) IO, there currently is only the HZ sample driven
information available, while for all other counters in this
class, a high resolution version is available via
CONFIG_SCHEDSTATS.
In order to make an improved bootchart tool possible, we also
need a higher resolution version of the iowait time.
This patch below adds this scheduler statistic to the kernel.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <4A64B813.1080506@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched_debug.c')
-rw-r--r-- | kernel/sched_debug.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c index 70c7e0b..5ddbd08 100644 --- a/kernel/sched_debug.c +++ b/kernel/sched_debug.c @@ -409,6 +409,8 @@ void proc_sched_show_task(struct task_struct *p, struct seq_file *m) PN(se.wait_max); PN(se.wait_sum); P(se.wait_count); + PN(se.iowait_sum); + P(se.iowait_count); P(sched_info.bkl_count); P(se.nr_migrations); P(se.nr_migrations_cold); @@ -479,6 +481,8 @@ void proc_sched_set_task(struct task_struct *p) p->se.wait_max = 0; p->se.wait_sum = 0; p->se.wait_count = 0; + p->se.iowait_sum = 0; + p->se.iowait_count = 0; p->se.sleep_max = 0; p->se.sum_sleep_runtime = 0; p->se.block_max = 0; |