diff options
author | Jack F Vogel <jfv@FreeBSD.org> | 2010-07-09 17:11:29 +0000 |
---|---|---|
committer | Jack F Vogel <jfv@FreeBSD.org> | 2010-07-09 17:11:29 +0000 |
commit | d6ff3d4d13df9b39481d3d2470e2af0c13a4e1ba (patch) | |
tree | 065be8cb47ebafdf36734bfaadbe46bfdcefd8ea /sys/dev/e1000 | |
parent | 932773c8824cd7ba88cc26f8f8b01414cfb40e53 (diff) | |
download | src-d6ff3d4d13df9b39481d3d2470e2af0c13a4e1ba.tar.gz src-d6ff3d4d13df9b39481d3d2470e2af0c13a4e1ba.zip |
Fix of a VLAN problem by jhb, the checksum capability
got lost along the way.
MFC: asap
Notes
Notes:
svn path=/head/; revision=209859
Diffstat (limited to 'sys/dev/e1000')
-rw-r--r-- | sys/dev/e1000/if_igb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/e1000/if_igb.c b/sys/dev/e1000/if_igb.c index f81557455517..eb3906bf4c5f 100644 --- a/sys/dev/e1000/if_igb.c +++ b/sys/dev/e1000/if_igb.c @@ -2679,7 +2679,7 @@ igb_setup_interface(device_t dev, struct adapter *adapter) ifp->if_capabilities = ifp->if_capenable = 0; - ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_MTU; + ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_HWCSUM; ifp->if_capabilities |= IFCAP_TSO4; ifp->if_capabilities |= IFCAP_JUMBO_MTU; if (igb_header_split) |