svn commit: r311958 - in head/sys/dev: mpr mps

Scott Long scottl at FreeBSD.org
Thu Jan 12 01:13:06 UTC 2017


Author: scottl
Date: Thu Jan 12 01:13:05 2017
New Revision: 311958
URL: https://svnweb.freebsd.org/changeset/base/311958

Log:
  Print out the number of queues/MSIx vectors.
  
  Sponsored by:	Netflix

Modified:
  head/sys/dev/mpr/mpr_table.c
  head/sys/dev/mps/mps_table.c

Modified: head/sys/dev/mpr/mpr_table.c
==============================================================================
--- head/sys/dev/mpr/mpr_table.c	Thu Jan 12 01:09:15 2017	(r311957)
+++ head/sys/dev/mpr/mpr_table.c	Thu Jan 12 01:13:05 2017	(r311958)
@@ -209,6 +209,7 @@ mpr_print_iocfacts(struct mpr_softc *sc,
 	mpr_dprint_field(sc, MPR_XINFO, "WhoInit: %s\n",
 	    mpr_describe_table(mpr_whoinit_names, facts->WhoInit));
 	MPR_PRINTFIELD(sc, facts, NumberOfPorts, %d);
+	MPR_PRINTFIELD(sc, facts, MaxMSIxVectors, %d);
 	MPR_PRINTFIELD(sc, facts, RequestCredit, %d);
 	MPR_PRINTFIELD(sc, facts, ProductID, 0x%x);
 	mpr_dprint_field(sc, MPR_XINFO, "IOCCapabilities: %b\n",

Modified: head/sys/dev/mps/mps_table.c
==============================================================================
--- head/sys/dev/mps/mps_table.c	Thu Jan 12 01:09:15 2017	(r311957)
+++ head/sys/dev/mps/mps_table.c	Thu Jan 12 01:13:05 2017	(r311958)
@@ -208,6 +208,7 @@ mps_print_iocfacts(struct mps_softc *sc,
 	mps_dprint_field(sc, MPS_XINFO, "WhoInit: %s\n",
 	    mps_describe_table(mps_whoinit_names, facts->WhoInit));
 	MPS_PRINTFIELD(sc, facts, NumberOfPorts, %d);
+	MPS_PRINTFIELD(sc, facts, MaxMSIxVectors, %d);
 	MPS_PRINTFIELD(sc, facts, RequestCredit, %d);
 	MPS_PRINTFIELD(sc, facts, ProductID, 0x%x);
 	mps_dprint_field(sc, MPS_XINFO, "IOCCapabilities: %b\n",


More information about the svn-src-all mailing list