svn commit: r303009 - head/sys/net

Alexander Motin mav at FreeBSD.org
Mon Jul 18 16:58:48 UTC 2016


Author: mav
Date: Mon Jul 18 16:58:47 2016
New Revision: 303009
URL: https://svnweb.freebsd.org/changeset/base/303009

Log:
  Negotiate/disable TXCSUM_IPV6 same as TXCSUM.

Modified:
  head/sys/net/if_bridge.c

Modified: head/sys/net/if_bridge.c
==============================================================================
--- head/sys/net/if_bridge.c	Mon Jul 18 16:39:53 2016	(r303008)
+++ head/sys/net/if_bridge.c	Mon Jul 18 16:58:47 2016	(r303009)
@@ -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