From owner-svn-src-all@FreeBSD.ORG Fri Oct 7 11:30:55 2011 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAA26106566C; Fri, 7 Oct 2011 11:30:55 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 89DEF8FC08; Fri, 7 Oct 2011 11:30:54 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id OAA19631; Fri, 07 Oct 2011 14:14:47 +0300 (EEST) (envelope-from avg@FreeBSD.org) Message-ID: <4E8EDF26.6040409@FreeBSD.org> Date: Fri, 07 Oct 2011 14:14:46 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0.1) Gecko/20111003 Thunderbird/7.0.1 MIME-Version: 1.0 To: "David E. O'Brien" References: <201110070600.p97600Ut095709@svn.freebsd.org> In-Reply-To: <201110070600.p97600Ut095709@svn.freebsd.org> X-Enigmail-Version: undefined Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r226090 - head/sys/sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Oct 2011 11:30:55 -0000 on 07/10/2011 09:00 David E. O'Brien said the following: > 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) Heck, I am going to five! :-) > #endif > #endif /* KERNEL */ > -- Andriy Gapon