svn commit: r226090 - head/sys/sys

David E. O'Brien obrien at FreeBSD.org
Fri Oct 7 06:00:00 UTC 2011


Author: obrien
Date: Fri Oct  7 06:00:00 2011
New Revision: 226090
URL: http://svn.freebsd.org/changeset/base/226090

Log:
  Increase MSGBUF_SIZE.
  The previous size lead to truncated /var/run/dmesg.boot when booted with "-v".

Modified:
  head/sys/sys/msgbuf.h

Modified: head/sys/sys/msgbuf.h
==============================================================================
--- head/sys/sys/msgbuf.h	Fri Oct  7 05:47:30 2011	(r226089)
+++ head/sys/sys/msgbuf.h	Fri Oct  7 06:00:00 2011	(r226090)
@@ -77,7 +77,7 @@ int	msgbuf_peekbytes(struct msgbuf *mbp,
 void	msgbuf_reinit(struct msgbuf *mbp, void *ptr, int size);
 
 #ifndef MSGBUF_SIZE
-#define	MSGBUF_SIZE	(32768 * 2)
+#define	MSGBUF_SIZE	(32768 * 3)
 #endif
 #endif /* KERNEL */
 


More information about the svn-src-head mailing list