diff options
author | Balbir Singh <balbir@linux.vnet.ibm.com> | 2007-07-09 18:52:00 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-07-09 18:52:00 +0200 |
commit | 172ba844a8851c3edd13c0a979cdf46bd5e3cc1a (patch) | |
tree | 5e1bfd820c8e68fc28450688f166f4136351e1e1 /fs | |
parent | b27f03d4bdc145a09fb7b0c0e004b29f1ee555fa (diff) | |
download | linux-3.10-172ba844a8851c3edd13c0a979cdf46bd5e3cc1a.tar.gz linux-3.10-172ba844a8851c3edd13c0a979cdf46bd5e3cc1a.tar.bz2 linux-3.10-172ba844a8851c3edd13c0a979cdf46bd5e3cc1a.zip |
sched: update delay-accounting to use CFS's precise stats
update delay-accounting to use CFS's precise stats.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/proc/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index a5fa1fdafc4..0f40e820c7f 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -296,7 +296,7 @@ static int proc_pid_wchan(struct task_struct *task, char *buffer) */ static int proc_pid_schedstat(struct task_struct *task, char *buffer) { - return sprintf(buffer, "%lu %lu %lu\n", + return sprintf(buffer, "%llu %llu %lu\n", task->sched_info.cpu_time, task->sched_info.run_delay, task->sched_info.pcnt); |