svn commit: r304426 - stable/11/sys/net

Alexander Motin mav at FreeBSD.org
Thu Aug 18 12:08:40 UTC 2016


Author: mav
Date: Thu Aug 18 12:08:39 2016
New Revision: 304426
URL: https://svnweb.freebsd.org/changeset/base/304426

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

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

Modified: stable/11/sys/net/if_bridge.c
==============================================================================
--- stable/11/sys/net/if_bridge.c	Thu Aug 18 11:56:07 2016	(r304425)
+++ stable/11/sys/net/if_bridge.c	Thu Aug 18 12:08:39 2016	(r304426)
@@ -166,7 +166,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