[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200701050435.l054ZUHx005535@zach-dev.vmware.com>
Date: Thu, 4 Jan 2007 20:35:30 -0800
From: Zachary Amsden <zach@...are.com>
To: Andrew Morton <akpm@...l.org>,
Rusty Russell <rusty@...tcorp.com.au>, Andi Kleen <ak@....de>,
Jeremy Fitzhardinge <jeremy@...p.org>,
Chris Wright <chrisw@...s-sol.org>,
Virtualization Mailing List <virtualization@...ts.osdl.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Eli Collins <ecollins@...are.com>,
Zachary Amsden <zach@...are.com>
Subject: [PATCH 1/3] Vmi compile fix
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@...are.com>
diff -r 21d7686ee318 arch/i386/kernel/vmi.c
--- a/arch/i386/kernel/vmi.c Thu Jan 04 15:23:30 2007 -0800
+++ b/arch/i386/kernel/vmi.c Thu Jan 04 15:55:39 2007 -0800
@@ -913,7 +913,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);
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists