svn commit: r186466 - head/sys/netgraph/bluetooth/hci

Maksim Yevmenkin emax at FreeBSD.org
Wed Dec 24 00:00:52 UTC 2008


Author: emax
Date: Wed Dec 24 00:00:52 2008
New Revision: 186466
URL: http://svn.freebsd.org/changeset/base/186466

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

Modified:
  head/sys/netgraph/bluetooth/hci/ng_hci_main.c

Modified: head/sys/netgraph/bluetooth/hci/ng_hci_main.c
==============================================================================
--- head/sys/netgraph/bluetooth/hci/ng_hci_main.c	Tue Dec 23 22:53:57 2008	(r186465)
+++ head/sys/netgraph/bluetooth/hci/ng_hci_main.c	Wed Dec 24 00:00:52 2008	(r186466)
@@ -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-all mailing list