Messages in this thread Patch in this message |  | | From | Andi Kleen <> | Subject | Re: [patch, -rc6] x86_64: UP build fixes | Date | Thu, 16 Nov 2006 10:22:03 +0100 |
| |
On Thursday 16 November 2006 10:17, Andrew Morton wrote: > On Thu, 16 Nov 2006 10:01:01 +0100 > Andi Kleen <ak@suse.de> wrote: > > > +#ifdef CONFIG_HOTPLUG_CPU > > hotcpu_notifier(cpu_vsyscall_notifier, 0); > > +#endif > > this part isn't needed - the definition handles that.
Thanks. Updated patch appended.
-Andi
Fix vsyscall.c compilation on UP
Broken by earlier patch by me.
Signed-off-by: Andi Kleen <ak@suse.de>
Index: linux/arch/x86_64/kernel/vsyscall.c =================================================================== --- linux.orig/arch/x86_64/kernel/vsyscall.c +++ linux/arch/x86_64/kernel/vsyscall.c @@ -274,6 +274,7 @@ static void __cpuinit cpu_vsyscall_init( vsyscall_set_cpu(raw_smp_processor_id()); } +#ifdef CONFIG_HOTPLUG_CPU static int __cpuinit cpu_vsyscall_notifier(struct notifier_block *n, unsigned long action, void *arg) { @@ -282,6 +283,7 @@ cpu_vsyscall_notifier(struct notifier_bl smp_call_function_single(cpu, cpu_vsyscall_init, NULL, 0, 1); return NOTIFY_DONE; } +#endif static void __init map_vsyscall(void) { - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |