From owner-freebsd-current@FreeBSD.ORG Mon Sep 15 00:53:09 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B40A316A4BF for ; Mon, 15 Sep 2003 00:53:09 -0700 (PDT) Received: from cirb503493.alcatel.com.au (c211-28-27-130.belrs2.nsw.optusnet.com.au [211.28.27.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE93343FBD for ; Mon, 15 Sep 2003 00:53:07 -0700 (PDT) (envelope-from PeterJeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h8F7r5gh014794; Mon, 15 Sep 2003 17:53:05 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h8F7r2ld014793; Mon, 15 Sep 2003 17:53:02 +1000 (EST) Date: Mon, 15 Sep 2003 17:53:02 +1000 From: Peter Jeremy To: Doug White Message-ID: <20030915075301.GA14775@cirb503493.alcatel.com.au> References: <31929.12.238.113.137.1063485645.squirrel@mail.yazzy.org> <20030914102130.K93499@carver.gumbysoft.com> <33165.12.238.113.137.1063565187.squirrel@mail.yazzy.org> <20030914191114.C96749@carver.gumbysoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030914191114.C96749@carver.gumbysoft.com> User-Agent: Mutt/1.4.1i cc: masta cc: current@freebsd.org Subject: Re: mystery kernel spew X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Sep 2003 07:53:09 -0000 On Sun, Sep 14, 2003 at 07:13:09PM -0700, Doug White wrote: >Incidentally, if you are getting wrapping even without this, you can use a >serial console to capture the output. I've had to do this for doing nasty >ACPI debugging with lots of the options enabled. For kernel spew, you can also increase the kernel message buffer: # Size of the kernel message buffer. Should be N * pagesize. options MSGBUF_SIZE=40960 And for the VTYs, you can increase the scroll-back size: options SC_HISTORY_SIZE=200 # number of history buffer lines Both these are kernel compile-time options. Peter