aboutsummaryrefslogtreecommitdiffstats
path: root/patches/linux-2.6.16.30/xen-hotplug.patch
blob: 06abdda41b2f58ee7245701cfc70ad502a193a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff -pruN ../orig-linux-2.6.16.29/fs/proc/proc_misc.c ./fs/proc/proc_misc.c
--- ../orig-linux-2.6.16.29/fs/proc/proc_misc.c	2006-09-12 19:02:10.000000000 +0100
+++ ./fs/proc/proc_misc.c	2006-09-19 14:06:00.000000000 +0100
@@ -433,7 +433,7 @@ static int show_stat(struct seq_file *p,
 		(unsigned long long)cputime64_to_clock_t(irq),
 		(unsigned long long)cputime64_to_clock_t(softirq),
 		(unsigned long long)cputime64_to_clock_t(steal));
-	for_each_online_cpu(i) {
+	for_each_cpu(i) {
 
 		/* Copy values here to work around gcc-2.95.3, gcc-2.96 */
 		user = kstat_cpu(i).cpustat.user;