svn commit: r282234 - projects/em_mq/sys/dev/e1000

Sean Bruno sbruno at FreeBSD.org
Wed Apr 29 16:31:05 UTC 2015


Author: sbruno
Date: Wed Apr 29 16:31:04 2015
New Revision: 282234
URL: https://svnweb.freebsd.org/changeset/base/282234

Log:
  bus_describe_intr() will stop at the first whitespace it encounters, remove space
  so the intr thread is identified correctly.
  
  Remove stray comment.

Modified:
  projects/em_mq/sys/dev/e1000/if_em.c
  projects/em_mq/sys/dev/e1000/if_em.h

Modified: projects/em_mq/sys/dev/e1000/if_em.c
==============================================================================
--- projects/em_mq/sys/dev/e1000/if_em.c	Wed Apr 29 16:15:38 2015	(r282233)
+++ projects/em_mq/sys/dev/e1000/if_em.c	Wed Apr 29 16:31:04 2015	(r282234)
@@ -2580,7 +2580,7 @@ em_allocate_msix(struct adapter *adapter
 			return (error);
 		}
 #if __FreeBSD_version >= 800504
-		bus_describe_intr(dev, rxr->res, rxr->tag, "rx %d", i);
+		bus_describe_intr(dev, rxr->res, rxr->tag, "rx%d", i);
 #endif
 		rxr->msix = vector;
 

Modified: projects/em_mq/sys/dev/e1000/if_em.h
==============================================================================
--- projects/em_mq/sys/dev/e1000/if_em.h	Wed Apr 29 16:15:38 2015	(r282233)
+++ projects/em_mq/sys/dev/e1000/if_em.h	Wed Apr 29 16:31:04 2015	(r282234)
@@ -407,7 +407,6 @@ struct adapter {
 	eventhandler_tag vlan_detach;
 
 	u16	num_vlans;
-	/* Allow number of tx queues != num of rx_queues */
 	u8	num_queues;
 
         /*


More information about the svn-src-projects mailing list