summaryrefslogtreecommitdiffstats
path: root/sys/dev/et
diff options
context:
space:
mode:
authoryongari <yongari@FreeBSD.org>2009-11-20 20:43:16 +0000
committeryongari <yongari@FreeBSD.org>2009-11-20 20:43:16 +0000
commit9b1c572dee33b0cb3cc9bfbcdf44e7e0c5a81ec8 (patch)
tree670387e9a606e344c0ce01cc6db4b3355e29715d /sys/dev/et
parent2bcead904d4181aa85e020b88cf21ee585ef4399 (diff)
downloadFreeBSD-src-9b1c572dee33b0cb3cc9bfbcdf44e7e0c5a81ec8.zip
FreeBSD-src-9b1c572dee33b0cb3cc9bfbcdf44e7e0c5a81ec8.tar.gz
Only Tx checksum offloading is supported now. Remove experimental
code sneaked in r199611.
Diffstat (limited to 'sys/dev/et')
-rw-r--r--sys/dev/et/if_et.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/et/if_et.c b/sys/dev/et/if_et.c
index 695c6ba..77ee4ab 100644
--- a/sys/dev/et/if_et.c
+++ b/sys/dev/et/if_et.c
@@ -336,7 +336,7 @@ et_attach(device_t dev)
ifp->if_ioctl = et_ioctl;
ifp->if_start = et_start;
ifp->if_mtu = ETHERMTU;
- ifp->if_capabilities = /*IFCAP_TXCSUM*/IFCAP_HWCSUM | IFCAP_VLAN_MTU;
+ ifp->if_capabilities = IFCAP_TXCSUM | IFCAP_VLAN_MTU;
ifp->if_capenable = ifp->if_capabilities;
IFQ_SET_MAXLEN(&ifp->if_snd, ET_TX_NDESC);
IFQ_SET_READY(&ifp->if_snd);
OpenPOWER on IntegriCloud