aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/e1000
diff options
context:
space:
mode:
authorStephen Hurd <shurd@FreeBSD.org>2018-09-20 20:06:44 +0000
committerStephen Hurd <shurd@FreeBSD.org>2018-09-20 20:06:44 +0000
commit861437f83ac101939a96c98ca9266a11de733c2a (patch)
tree60648e8bbe3885df2a836e8dd18bd0cdcd289273 /sys/dev/e1000
parent76b09d1823ee18fe4a0b8abe17d73306263765b8 (diff)
downloadsrc-861437f83ac101939a96c98ca9266a11de733c2a.tar.gz
src-861437f83ac101939a96c98ca9266a11de733c2a.zip
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
Notes
Notes: svn path=/head/; revision=338840
Diffstat (limited to 'sys/dev/e1000')
-rw-r--r--sys/dev/e1000/if_em.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/e1000/if_em.c b/sys/dev/e1000/if_em.c
index a95d606ac34f..93714cd10710 100644
--- a/sys/dev/e1000/if_em.c
+++ b/sys/dev/e1000/if_em.c
@@ -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