Could you add this tiny patch to fix it?
Thanks,
Martin.
diff -urN virgin-2.4.13-pre2/kernel/printk.c linux-2.4.13-pre2/kernel/printk.c
--- virgin-2.4.13-pre2/kernel/printk.c Mon Sep 17 13:16:30 2001
+++ linux-2.4.13-pre2/kernel/printk.c Mon Oct 15 13:15:37 2001
@@ -27,7 +27,12 @@
#include <asm/uaccess.h>
-#define LOG_BUF_LEN (16384) /* This must be a power of two */
+#ifdef CONFIG_SMP
+#define LOG_BUF_LEN (65536) /* This must be a power of two */
+#else
+#define LOG_BUF_LEN (16384) /* This must be a power of two */
+#endif
+
#define LOG_BUF_MASK (LOG_BUF_LEN-1)
/* printk's without a loglevel use this.. */
-
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/