svn commit: r188401 - in stable/7/sys: . contrib/pf dev/cxgb netgraph/bluetooth/hci

Maksim Yevmenkin emax at FreeBSD.org
Mon Feb 9 09:53:46 PST 2009


Author: emax
Date: Mon Feb  9 17:53:45 2009
New Revision: 188401
URL: http://svn.freebsd.org/changeset/base/188401

Log:
  MFC r186466
  
  Change message severity level from WARN to INFO. This should reduce
  amount of messages sent to syslog

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)
  stable/7/sys/netgraph/bluetooth/hci/ng_hci_main.c

Modified: stable/7/sys/netgraph/bluetooth/hci/ng_hci_main.c
==============================================================================
--- stable/7/sys/netgraph/bluetooth/hci/ng_hci_main.c	Mon Feb  9 17:50:19 2009	(r188400)
+++ stable/7/sys/netgraph/bluetooth/hci/ng_hci_main.c	Mon Feb  9 17:53:45 2009	(r188401)
@@ -728,7 +728,7 @@ ng_hci_drv_rcvdata(hook_p hook, item_p i
 
 		if ((unit->state & NG_HCI_UNIT_READY) != NG_HCI_UNIT_READY ||
 		    unit->sco == NULL || NG_HOOK_NOT_VALID(unit->sco)) {
-			NG_HCI_WARN(
+			NG_HCI_INFO(
 "%s: %s - could not forward HCI SCO data packet, state=%#x, hook=%p\n",
 				__func__, NG_NODE_NAME(unit->node), 
 				unit->state, unit->sco);


More information about the svn-src-stable-7 mailing list