diff options
author | Scott Long <scottl@FreeBSD.org> | 2017-01-12 01:13:05 +0000 |
---|---|---|
committer | Scott Long <scottl@FreeBSD.org> | 2017-01-12 01:13:05 +0000 |
commit | 94e4e732af501c7b6031fc0887e06753a0d2592a (patch) | |
tree | bd5d451ce858419afb04361761ae807386506bd6 | |
parent | f64342e354d95a2e5101850ad6d9199c211748ad (diff) |
Notes
-rw-r--r-- | sys/dev/mpr/mpr_table.c | 1 | ||||
-rw-r--r-- | sys/dev/mps/mps_table.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/mpr/mpr_table.c b/sys/dev/mpr/mpr_table.c index 6ec6492d6402..de715259de79 100644 --- a/sys/dev/mpr/mpr_table.c +++ b/sys/dev/mpr/mpr_table.c @@ -209,6 +209,7 @@ mpr_print_iocfacts(struct mpr_softc *sc, MPI2_IOC_FACTS_REPLY *facts) 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", diff --git a/sys/dev/mps/mps_table.c b/sys/dev/mps/mps_table.c index f6e125d77c0c..d85a71a2e55d 100644 --- a/sys/dev/mps/mps_table.c +++ b/sys/dev/mps/mps_table.c @@ -208,6 +208,7 @@ mps_print_iocfacts(struct mps_softc *sc, MPI2_IOC_FACTS_REPLY *facts) 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", |