Date: Thu, 12 Jan 2017 01:13:05 +0000 (UTC) From: Scott Long <scottl@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r311958 - in head/sys/dev: mpr mps Message-ID: <201701120113.v0C1D5gP073484@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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",
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701120113.v0C1D5gP073484>