Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Dec 2009 15:34:00 -0500
From:      John Baldwin <jhb@freebsd.org>
To:        "Jung-uk Kim" <jkim@freebsd.org>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org
Subject:   Re: svn commit: r200231 - head/sys/dev/mfi
Message-ID:  <200912071534.00758.jhb@freebsd.org>
In-Reply-To: <200912072017.nB7KHXYi064718@svn.freebsd.org>
References:  <200912072017.nB7KHXYi064718@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Monday 07 December 2009 3:17:33 pm Jung-uk Kim wrote:
> Author: jkim
> Date: Mon Dec  7 20:17:33 2009
> New Revision: 200231
> URL: http://svn.freebsd.org/changeset/base/200231
> 
> Log:
>   Make mfi(4) little bit less chatty.

This is the wrong way to fix this, please revert.  If you want to change the 
default, then change it here instead (from mfi.c):

static int	mfi_event_class = MFI_EVT_CLASS_INFO;
TUNABLE_INT("hw.mfi.event_class", &mfi_event_class);
SYSCTL_INT(_hw_mfi, OID_AUTO, event_class, CTLFLAG_RW, &mfi_event_class,
          0, "event message class");

Note that you can also just adjust it locally by setting the loader tunable or 
sysctl.

-- 
John Baldwin



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