summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2009-06-26 13:25:16 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2009-06-26 13:25:16 +1000
commitcaa069c57317be51ddc6ca477d39033d9f76973b (patch)
tree6a2dbfb2f795b901abefc2550c801acdafb06973 /fs
parenta03b7a2355d1457d42af6b5117dbe8efa9c92f6f (diff)
parent27bf8712477db47c891e6198000c985631cd18de (diff)
Merge commit 'cputime/cputime'
Diffstat (limited to 'fs')
-rw-r--r--fs/proc/uptime.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/proc/uptime.c b/fs/proc/uptime.c
index 0c10a0b3f146..766b1d456050 100644
--- a/fs/proc/uptime.c
+++ b/fs/proc/uptime.c
@@ -4,13 +4,18 @@
#include <linux/sched.h>
#include <linux/seq_file.h>
#include <linux/time.h>
+#include <linux/kernel_stat.h>
#include <asm/cputime.h>
static int uptime_proc_show(struct seq_file *m, void *v)
{
struct timespec uptime;
struct timespec idle;
- cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
+ int i;
+ cputime_t idletime = cputime_zero;
+
+ for_each_possible_cpu(i)
+ idletime = cputime64_add(idletime, kstat_cpu(i).cpustat.idle);
do_posix_clock_monotonic_gettime(&uptime);
monotonic_to_bootbased(&uptime);