From 7f1e5ebba8279c4c9a53469ab3e09a0b075baad9 Mon Sep 17 00:00:00 2001 From: Sepherosa Ziehau Date: Tue, 5 Sep 2017 06:20:02 +0000 Subject: [PATCH] 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 --- sys/dev/hyperv/netvsc/hn_rndis.c | 2 ++ 1 file changed, 2 insertions(+) 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;