linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 6/10] UML - Change for_each_cpu to for_each_online_cpu
@ 2005-01-17  5:56 Jeff Dike
  0 siblings, 0 replies; only message in thread
From: Jeff Dike @ 2005-01-17  5:56 UTC (permalink / raw)
  To: akpm, Blaisorblade; +Cc: linux-kernel

Signed-off-by: Jeff Dike <jdike@addtoit.com>

Index: 2.6.10/arch/um/kernel/irq.c
===================================================================
--- 2.6.10.orig/arch/um/kernel/irq.c	2005-01-11 12:18:51.000000000 -0500
+++ 2.6.10/arch/um/kernel/irq.c	2005-01-11 13:04:52.000000000 -0500
@@ -45,7 +45,7 @@
 
 	if (i == 0) {
 		seq_printf(p, "           ");
-		for_each_cpu(j)
+		for_each_online_cpu(j)
 			seq_printf(p, "CPU%d       ",j);
 		seq_putc(p, '\n');
 	}
@@ -59,7 +59,7 @@
 #ifndef CONFIG_SMP
 		seq_printf(p, "%10u ", kstat_irqs(i));
 #else
-		for_each_cpu(j)
+		for_each_online_cpu(j)
 			seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
 #endif
 		seq_printf(p, " %14s", irq_desc[i].handler->typename);
Index: 2.6.10/arch/um/kernel/smp.c
===================================================================
--- 2.6.10.orig/arch/um/kernel/smp.c	2005-01-10 17:36:31.000000000 -0500
+++ 2.6.10/arch/um/kernel/smp.c	2005-01-11 13:04:58.000000000 -0500
@@ -247,7 +247,7 @@
 	func = _func;
 	info = _info;
 
-	for_each_cpu(i)
+	for_each_online_cpu(i)
 		os_write_file(cpu_data[i].ipi_pipe[1], "C", 1);
 
 	while (atomic_read(&scf_started) != cpus)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-01-17  3:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-17  5:56 [PATCH 6/10] UML - Change for_each_cpu to for_each_online_cpu Jeff Dike

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).