The patch titled i386: hpet assumes boot cpu is 0 has been added to the -mm tree. Its filename is i386-hpet-assumes-boot-cpu-is-0.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: i386: hpet assumes boot cpu is 0 From: Chris Wright <chrisw@xxxxxxxxxxxx> I fixed this in x86_64. Looks like the kind of thing that will break voyager on i386. Signed-off-by: Chris Wright <chrisw@xxxxxxxxxxxx> Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: john stultz <johnstul@xxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/i386/kernel/hpet.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/hpet.c~i386-hpet-assumes-boot-cpu-is-0 arch/i386/kernel/hpet.c --- a/arch/i386/kernel/hpet.c~i386-hpet-assumes-boot-cpu-is-0 +++ a/arch/i386/kernel/hpet.c @@ -325,7 +325,7 @@ int __init hpet_enable(void) * Start hpet with the boot cpu mask and make it * global after the IO_APIC has been initialized. */ - hpet_clockevent.cpumask =cpumask_of_cpu(0); + hpet_clockevent.cpumask = cpumask_of_cpu(smp_processor_id()); clockevents_register_device(&hpet_clockevent); global_clock_event = &hpet_clockevent; return 1; _ Patches currently in -mm which might be from chrisw@xxxxxxxxxxxx are ntp-move-the-cmos-update-code-into-ntpc.patch i386-hpet-assumes-boot-cpu-is-0.patch x86_64-untangle-asm-hpeth-from-asm-timexh.patch x86_64-use-generic-cmos-update.patch x86_64-convert-to-cleckevents.patch x86_64-restore-restore-nohpet-cmdline.patch x86_64-prep-idle-loop-for-dynticks.patch x86_64-enable-high-resolution-timers-and-dynticks.patch implement-file-posix-capabilities.patch implement-file-posix-capabilities-fix.patch user-namespace-add-the-framework.patch user-namespace-add-unshare.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html