The patch titled Vmi compile fix has been removed from the -mm tree. Its filename was paravirt-vmi-backend-for-paravirt-ops-compile-fix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Vmi compile fix From: Zachary Amsden <zach@xxxxxxxxxx> The variable no_timer_check does not exist in UP builds; don't try to set it in the vmi init code. Signed-off-by: Zachary Amsden <zach@xxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Cc: Jeremy Fitzhardinge <jeremy@xxxxxxxxxxxxx> Cc: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Cc: Chris Wright <chrisw@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/vmi.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN arch/i386/kernel/vmi.c~paravirt-vmi-backend-for-paravirt-ops-compile-fix arch/i386/kernel/vmi.c --- a/arch/i386/kernel/vmi.c~paravirt-vmi-backend-for-paravirt-ops-compile-fix +++ a/arch/i386/kernel/vmi.c @@ -868,7 +868,9 @@ void __init vmi_init(void) local_irq_save(flags); activate_vmi(); +#ifdef CONFIG_SMP no_timer_check = 1; +#endif local_irq_restore(flags & X86_EFLAGS_IF); } _ Patches currently in -mm which might be from zach@xxxxxxxxxx are vmi-versus-hrtimers.patch i386-apic-clean-up-the-apic-code.patch i386-apic-rework-and-fix-local-apic-calibration.patch dynticks-i386-prepare-nmi-watchdog.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