svn commit: r304427 - stable/10/sys/net

Alexander Motin mav at FreeBSD.org
Thu Aug 18 12:09:21 UTC 2016


Author: mav
Date: Thu Aug 18 12:09:20 2016
New Revision: 304427
URL: https://svnweb.freebsd.org/changeset/base/304427

Log:
  MFC r303009: Negotiate/disable TXCSUM_IPV6 same as TXCSUM.

Modified:
  stable/10/sys/net/if_bridge.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/net/if_bridge.c
==============================================================================
--- stable/10/sys/net/if_bridge.c	Thu Aug 18 12:08:39 2016	(r304426)
+++ stable/10/sys/net/if_bridge.c	Thu Aug 18 12:09:20 2016	(r304427)
@@ -165,7 +165,8 @@ __FBSDID("$FreeBSD$");
 /*
  * List of capabilities to possibly mask on the member interface.
  */
-#define	BRIDGE_IFCAPS_MASK		(IFCAP_TOE|IFCAP_TSO|IFCAP_TXCSUM)
+#define	BRIDGE_IFCAPS_MASK		(IFCAP_TOE|IFCAP_TSO|IFCAP_TXCSUM|\
+					 IFCAP_TXCSUM_IPV6)
 
 /*
  * List of capabilities to strip


More information about the svn-src-all mailing list