diff options
-rw-r--r-- | fs/proc/stat.c | 41 |
1 files changed, 34 insertions, 7 deletions
diff --git a/fs/proc/stat.c b/fs/proc/stat.c index 9758b654a1bc..42b274da92c3 100644 --- a/fs/proc/stat.c +++ b/fs/proc/stat.c | |||
@@ -10,6 +10,7 @@ | |||
10 | #include <linux/time.h> | 10 | #include <linux/time.h> |
11 | #include <linux/irqnr.h> | 11 | #include <linux/irqnr.h> |
12 | #include <asm/cputime.h> | 12 | #include <asm/cputime.h> |
13 | #include <linux/tick.h> | ||
13 | 14 | ||
14 | #ifndef arch_irq_stat_cpu | 15 | #ifndef arch_irq_stat_cpu |
15 | #define arch_irq_stat_cpu(cpu) 0 | 16 | #define arch_irq_stat_cpu(cpu) 0 |
@@ -21,6 +22,35 @@ | |||
21 | #define arch_idle_time(cpu) 0 | 22 | #define arch_idle_time(cpu) 0 |
22 | #endif | 23 | #endif |
23 | 24 | ||
25 | static cputime64_t get_idle_time(int cpu) | ||
26 | { | ||
27 | u64 idle_time = get_cpu_idle_time_us(cpu, NULL); | ||
28 | cputime64_t idle; | ||
29 | |||
30 | if (idle_time == -1ULL) { | ||
31 | /* !NO_HZ so we can rely on cpustat.idle */ | ||
32 | idle = kstat_cpu(cpu).cpustat.idle; | ||
33 | idle = cputime64_add(idle, arch_idle_time(cpu)); | ||
34 | } else | ||
35 | idle = usecs_to_cputime(idle_time); | ||
36 | |||
37 | return idle; | ||
38 | } | ||
39 | |||
40 | static cputime64_t get_iowait_time(int cpu) | ||
41 | { | ||
42 | u64 iowait_time = get_cpu_iowait_time_us(cpu, NULL); | ||
43 | cputime64_t iowait; | ||
44 | |||
45 | if (iowait_time == -1ULL) | ||
46 | /* !NO_HZ so we can rely on cpustat.iowait */ | ||
47 | iowait = kstat_cpu(cpu).cpustat.iowait; | ||
48 | else | ||
49 | iowait = usecs_to_cputime(iowait_time); | ||
50 | |||
51 | return iowait; | ||
52 | } | ||
53 | |||
24 | static int show_stat(struct seq_file *p, void *v) | 54 | static int show_stat(struct seq_file *p, void *v) |
25 | { | 55 | { |
26 | int i, j; | 56 | int i, j; |
@@ -42,9 +72,8 @@ static int show_stat(struct seq_file *p, void *v) | |||
42 | user = cputime64_add(user, kstat_cpu(i).cpustat.user); | 72 | user = cputime64_add(user, kstat_cpu(i).cpustat.user); |
43 | nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice); | 73 | nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice); |
44 | system = cputime64_add(system, kstat_cpu(i).cpustat.system); | 74 | system = cputime64_add(system, kstat_cpu(i).cpustat.system); |
45 | idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle); | 75 | idle = cputime64_add(idle, get_idle_time(i)); |
46 | idle = cputime64_add(idle, arch_idle_time(i)); | 76 | iowait = cputime64_add(iowait, get_iowait_time(i)); |
47 | iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait); | ||
48 | irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq); | 77 | irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq); |
49 | softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq); | 78 | softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq); |
50 | steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal); | 79 | steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal); |
@@ -76,14 +105,12 @@ static int show_stat(struct seq_file *p, void *v) | |||
76 | (unsigned long long)cputime64_to_clock_t(guest), | 105 | (unsigned long long)cputime64_to_clock_t(guest), |
77 | (unsigned long long)cputime64_to_clock_t(guest_nice)); | 106 | (unsigned long long)cputime64_to_clock_t(guest_nice)); |
78 | for_each_online_cpu(i) { | 107 | for_each_online_cpu(i) { |
79 | |||
80 | /* Copy values here to work around gcc-2.95.3, gcc-2.96 */ | 108 | /* Copy values here to work around gcc-2.95.3, gcc-2.96 */ |
81 | user = kstat_cpu(i).cpustat.user; | 109 | user = kstat_cpu(i).cpustat.user; |
82 | nice = kstat_cpu(i).cpustat.nice; | 110 | nice = kstat_cpu(i).cpustat.nice; |
83 | system = kstat_cpu(i).cpustat.system; | 111 | system = kstat_cpu(i).cpustat.system; |
84 | idle = kstat_cpu(i).cpustat.idle; | 112 | idle = get_idle_time(i); |
85 | idle = cputime64_add(idle, arch_idle_time(i)); | 113 | iowait = get_iowait_time(i); |
86 | iowait = kstat_cpu(i).cpustat.iowait; | ||
87 | irq = kstat_cpu(i).cpustat.irq; | 114 | irq = kstat_cpu(i).cpustat.irq; |
88 | softirq = kstat_cpu(i).cpustat.softirq; | 115 | softirq = kstat_cpu(i).cpustat.softirq; |
89 | steal = kstat_cpu(i).cpustat.steal; | 116 | steal = kstat_cpu(i).cpustat.steal; |