[PATCH] Fix boot panic by adding topology export to voyager

From: James Bottomley
Date: Wed Feb 22 2006 - 18:53:11 EST


It looks like I can't get away without exporting topology functions from
voyager any longer, so add them to the voyager subarchitecture.

Signed-off-by: James Bottomley <James.Bottomley@xxxxxxxxxxxx>

---

James

Index: BUILD-2.6/arch/i386/mach-voyager/voyager_basic.c
===================================================================
--- BUILD-2.6.orig/arch/i386/mach-voyager/voyager_basic.c 2006-02-22 14:42:44.000000000 -0600
+++ BUILD-2.6/arch/i386/mach-voyager/voyager_basic.c 2006-02-22 14:47:20.000000000 -0600
@@ -23,6 +23,9 @@
#include <linux/delay.h>
#include <linux/reboot.h>
#include <linux/sysrq.h>
+#include <linux/smp.h>
+#include <linux/nodemask.h>
+#include <asm/cpu.h>
#include <asm/io.h>
#include <asm/voyager.h>
#include <asm/vic.h>
@@ -329,3 +332,15 @@
pm_power_off();
}

+static struct i386_cpu cpu_devices[NR_CPUS];
+
+static int __init topology_init(void)
+{
+ int i;
+
+ for_each_present_cpu(i)
+ register_cpu(&cpu_devices[i].cpu, i, NULL);
+ return 0;
+}
+
+subsys_initcall(topology_init);


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/