svn commit: r338840 - head/sys/dev/e1000

Stephen Hurd shurd at FreeBSD.org
Thu Sep 20 20:06:45 UTC 2018


Author: shurd
Date: Thu Sep 20 20:06:44 2018
New Revision: 338840
URL: https://svnweb.freebsd.org/changeset/base/338840

Log:
  Add IFCAP_TSO6 for igb
  
  It seems igb supports TSO6, but the capability got lost in
  the iflib update. Restore this capability.
  
  PR:		231476
  Reported by:	lev
  Reviewed by:	erj
  Approved by:	re (gjb)
  Sponsored by:	Limelight Networks
  Differential Revision:	https://reviews.freebsd.org/D17242

Modified:
  head/sys/dev/e1000/if_em.c

Modified: head/sys/dev/e1000/if_em.c
==============================================================================
--- head/sys/dev/e1000/if_em.c	Thu Sep 20 19:45:27 2018	(r338839)
+++ head/sys/dev/e1000/if_em.c	Thu Sep 20 20:06:44 2018	(r338840)
@@ -709,7 +709,8 @@ em_set_num_queues(if_ctx_t ctx)
 #define	IGB_CAPS							\
     IFCAP_HWCSUM | IFCAP_VLAN_MTU | IFCAP_VLAN_HWTAGGING |		\
     IFCAP_VLAN_HWCSUM | IFCAP_WOL | IFCAP_VLAN_HWFILTER | IFCAP_TSO4 |	\
-    IFCAP_LRO | IFCAP_VLAN_HWTSO | IFCAP_JUMBO_MTU | IFCAP_HWCSUM_IPV6;
+    IFCAP_LRO | IFCAP_VLAN_HWTSO | IFCAP_JUMBO_MTU | IFCAP_HWCSUM_IPV6 |\
+    IFCAP_TSO6
 
 /*********************************************************************
  *  Device initialization routine


More information about the svn-src-all mailing list