svn commit: r324474 - stable/11/sys/dev/hyperv/netvsc
Sepherosa Ziehau
sephe at FreeBSD.org
Tue Oct 10 05:38:09 UTC 2017
Author: sephe
Date: Tue Oct 10 05:38:07 2017
New Revision: 324474
URL: https://svnweb.freebsd.org/changeset/base/324474
Log:
MFC 323176
hyperv/hn: Log RSS capabilities mask.
This helps to detect when UDP hash types can be supported.
Sponsored by: Microsoft
Differential Revision: https://reviews.freebsd.org/D12177
Modified:
stable/11/sys/dev/hyperv/netvsc/hn_rndis.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/hyperv/netvsc/hn_rndis.c
==============================================================================
--- stable/11/sys/dev/hyperv/netvsc/hn_rndis.c Tue Oct 10 05:30:49 2017 (r324473)
+++ stable/11/sys/dev/hyperv/netvsc/hn_rndis.c Tue Oct 10 05:38:07 2017 (r324474)
@@ -497,6 +497,8 @@ hn_rndis_query_rsscaps(struct hn_softc *sc, int *rxr_c
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;
More information about the svn-src-all
mailing list