svn commit: r200231 - head/sys/dev/mfi

John Baldwin jhb at freebsd.org
Mon Dec 7 20:56:43 UTC 2009


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


More information about the svn-src-head mailing list