My first email never showed up on the list, here is another try:
===============================
Keith Owens wrote:
>
> Date: Thu Jan 3 20:24:15 PST 2002
> Workarea: sherman.melbourne.sgi.com:/build/kaos/2.4.x-xfs
>
> The following file(s) were checked into:
> bonnie.engr.sgi.com:/isms/slinx/2.4.x-xfs
>
> Modid: 2.4.x-xfs:slinx:109106a
> linux/arch/i386/kernel/traps.c - 1.41
It does not compile without KDB.
This patch protects an unconditional reference to KDB.
--
Eyal Lebedinsky (eyal@xxxxxxxxxxxxxx) <http://samba.org/eyal/> --- linux/arch/i386/kernel/traps.c.orig Fri Jan 4 21:13:50 2002
+++ linux/arch/i386/kernel/traps.c Fri Jan 4 21:14:20 2002
@@ -581,7 +581,9 @@
return;
}
#endif
+#ifdef CONFIG_KDB
(void)kdb(KDB_REASON_NMI, reason, regs);
+#endif
printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
printk("Dazed and confused, but trying to continue\n");
printk("Do you have a strange power saving mode enabled?\n");
|