Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Oct 2011 06:00:00 +0000 (UTC)
From:      "David E. O'Brien" <obrien@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r226090 - head/sys/sys
Message-ID:  <201110070600.p97600Ut095709@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201110070600.p97600Ut095709>