I have used 128k and larger buffer sizes, and I just noticed this
fragment in the RedHat Tux Webserver patch.  It creates a 2MB buffer:
--- linux/kernel/printk.c.orig  Sun Jan 28 20:24:13 2001
+++ linux/kernel/printk.c       Wed Jan 31 23:21:25 2001
@@ -22,7 +22,11 @@
 
 #include <asm/uaccess.h>
 
-#define LOG_BUF_LEN    (16384)
+#if CONFIG_TUX_DEBUG
+# define LOG_BUF_LEN   (16384*128)
+#else
+# define LOG_BUF_LEN   (16384)
+#endif
 #define LOG_BUF_MASK   (LOG_BUF_LEN-1)
 
 static char buf[1024];                                                                            
-
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/