From owner-svn-src-all@FreeBSD.ORG Mon Feb 4 20:46:14 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 347772DE; Mon, 4 Feb 2013 20:46:14 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 130B1D32; Mon, 4 Feb 2013 20:46:14 +0000 (UTC) Received: from pakbsde14.localnet (unknown [38.105.238.108]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 60ED4B926; Mon, 4 Feb 2013 15:46:13 -0500 (EST) From: John Baldwin To: Andriy Gapon Subject: Re: svn commit: r246282 - in head/sys: conf kern Date: Mon, 4 Feb 2013 14:29:01 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p22; KDE/4.5.5; amd64; ; ) References: <201302030957.r139vd8n027213@svn.freebsd.org> In-Reply-To: <201302030957.r139vd8n027213@svn.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201302041429.01477.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 04 Feb 2013 15:46:13 -0500 (EST) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 04 Feb 2013 20:46:14 -0000 On Sunday, February 03, 2013 4:57:39 am Andriy Gapon wrote: > Author: avg > Date: Sun Feb 3 09:57:39 2013 > New Revision: 246282 > URL: http://svnweb.freebsd.org/changeset/base/246282 > > Log: > allow for large KTR_ENTRIES values by allocating ktr_buf using malloc(9) > > Only during very early boot, before malloc(9) is functional (SI_SUB_KMEM), > the static ktr_buf_init is used. Size of the static buffer is determined > by a new kernel option KTR_BOOT_ENTRIES. Its default value is 1024. > > This commit builds on top of r243046. Does this lose "early" entries once the SYSINIT runs? It doesn't seem to make any effort to copy the existing entries over to the new buffer? -- John Baldwin