svn commit: r309230 - head/sys/dev/hyperv/netvsc

Sepherosa Ziehau sephe at FreeBSD.org
Mon Nov 28 05:54:21 UTC 2016


Author: sephe
Date: Mon Nov 28 05:54:20 2016
New Revision: 309230
URL: https://svnweb.freebsd.org/changeset/base/309230

Log:
  hyperv/hn: Enable multi-packet RNDIS message support by default.
  
  MFC after:	1 week
  Sponsored by:	Microsoft
  Differential Revision:	https://reviews.freebsd.org/D8621

Modified:
  head/sys/dev/hyperv/netvsc/if_hn.c

Modified: head/sys/dev/hyperv/netvsc/if_hn.c
==============================================================================
--- head/sys/dev/hyperv/netvsc/if_hn.c	Mon Nov 28 05:46:00 2016	(r309229)
+++ head/sys/dev/hyperv/netvsc/if_hn.c	Mon Nov 28 05:54:20 2016	(r309230)
@@ -465,7 +465,7 @@ SYSCTL_INT(_hw_hn, OID_AUTO, tx_agg_size
     &hn_tx_agg_size, 0, "Packet transmission aggregation size limit");
 
 /* Packet transmission aggregation count limit */
-static int			hn_tx_agg_pkts = 0;
+static int			hn_tx_agg_pkts = -1;
 SYSCTL_INT(_hw_hn, OID_AUTO, tx_agg_pkts, CTLFLAG_RDTUN,
     &hn_tx_agg_pkts, 0, "Packet transmission aggregation packet limit");
 


More information about the svn-src-head mailing list