diff options
author | Sepherosa Ziehau <sephe@FreeBSD.org> | 2017-09-05 06:20:02 +0000 |
---|---|---|
committer | Sepherosa Ziehau <sephe@FreeBSD.org> | 2017-09-05 06:20:02 +0000 |
commit | 7f1e5ebba8279c4c9a53469ab3e09a0b075baad9 (patch) | |
tree | 2c71f311567c408f508b0074284f60560a101c4d | |
parent | 8c068aa51ed850bca283a7368f2be6f29dbbd20e (diff) |
hyperv/hn: Log RSS capabilities mask.
This helps to detect when UDP hash types can be supported.
MFC after: 3 days
Sponsored by: Microsoft
Differential Revision: https://reviews.freebsd.org/D12177
Notes
Notes:
svn path=/head/; revision=323176
-rw-r--r-- | sys/dev/hyperv/netvsc/hn_rndis.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/hyperv/netvsc/hn_rndis.c b/sys/dev/hyperv/netvsc/hn_rndis.c index 35138ea4bf83..39d72acf883d 100644 --- a/sys/dev/hyperv/netvsc/hn_rndis.c +++ b/sys/dev/hyperv/netvsc/hn_rndis.c @@ -497,6 +497,8 @@ hn_rndis_query_rsscaps(struct hn_softc *sc, int *rxr_cnt0) caps.ndis_caps); return (EOPNOTSUPP); } + if (bootverbose) + if_printf(sc->hn_ifp, "RSS caps %#x\n", caps.ndis_caps); /* Commit! */ sc->hn_rss_ind_size = indsz; |