|
|
|
|
|
|
|
|
|
|
xen-devel
[PATCH] x86: Re: [Xen-devel] cs 19927 crashes during boot with debug=y
Fix an oversight of c/s 19927 - per-CPU data accesses must not be
iterated over using NR_CPUS bound loops.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx>
--- 2009-07-10.orig/xen/arch/x86/smpboot.c 2009-07-10 13:57:41.000000000
+0200
+++ 2009-07-10/xen/arch/x86/smpboot.c 2009-07-15 09:36:05.000000000 +0200
@@ -1163,7 +1163,7 @@ static void __init smp_boot_cpus(unsigne
* construct cpu_sibling_map, so that we can tell sibling CPUs
* efficiently.
*/
- for (cpu = 0; cpu < NR_CPUS; cpu++) {
+ for_each_cpu(cpu) {
cpus_clear(per_cpu(cpu_sibling_map, cpu));
cpus_clear(per_cpu(cpu_core_map, cpu));
}
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|