svn commit: r194911 - head/sys/dev/e1000

Jack F Vogel jfv at FreeBSD.org
Wed Jun 24 21:32:52 UTC 2009


Author: jfv
Date: Wed Jun 24 21:32:51 2009
New Revision: 194911
URL: http://svn.freebsd.org/changeset/base/194911

Log:
  Fix lint issue.

Modified:
  head/sys/dev/e1000/if_igb.c

Modified: head/sys/dev/e1000/if_igb.c
==============================================================================
--- head/sys/dev/e1000/if_igb.c	Wed Jun 24 21:10:52 2009	(r194910)
+++ head/sys/dev/e1000/if_igb.c	Wed Jun 24 21:32:51 2009	(r194911)
@@ -4661,8 +4661,8 @@ igb_print_debug_info(struct adapter *ada
 		device_printf(dev, "Queue(%d) tdh = %d, tdt = %d\n", i,
 		    E1000_READ_REG(&adapter->hw, E1000_TDH(i)),
 		    E1000_READ_REG(&adapter->hw, E1000_TDT(i)));
-		device_printf(dev, "no descriptors avail event = %lu\n",
-		    txr->no_desc_avail);
+		device_printf(dev, "TX(%d) no descriptors avail event = %lld\n",
+		    txr->me, (long long)txr->no_desc_avail);
 		device_printf(dev, "TX(%d) MSIX IRQ Handled = %lld\n", txr->me,
 		    (long long)txr->tx_irq);
 		device_printf(dev, "TX(%d) Packets sent = %lld\n", txr->me,


More information about the svn-src-all mailing list