svn commit: r324464 - stable/10/sys/dev/hyperv/netvsc

Sepherosa Ziehau sephe at FreeBSD.org
Tue Oct 10 03:02:56 UTC 2017


Author: sephe
Date: Tue Oct 10 03:02:54 2017
New Revision: 324464
URL: https://svnweb.freebsd.org/changeset/base/324464

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/10/sys/dev/hyperv/netvsc/hn_rndis.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/hyperv/netvsc/hn_rndis.c
==============================================================================
--- stable/10/sys/dev/hyperv/netvsc/hn_rndis.c	Tue Oct 10 02:57:30 2017	(r324463)
+++ stable/10/sys/dev/hyperv/netvsc/hn_rndis.c	Tue Oct 10 03:02:54 2017	(r324464)
@@ -498,6 +498,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-stable mailing list