diff options
author | np <np@FreeBSD.org> | 2013-01-26 01:06:27 +0000 |
---|---|---|
committer | np <np@FreeBSD.org> | 2013-01-26 01:06:27 +0000 |
commit | 62747ef26c161836e2f9e10ba2e0db033729f483 (patch) | |
tree | 4ebefab39fcc0c55707918f1fdff1cd3b48d5c8f | |
parent | 9e6cd5d6e195151d900adda1e0ce34eeba9c8881 (diff) | |
download | FreeBSD-src-62747ef26c161836e2f9e10ba2e0db033729f483.zip FreeBSD-src-62747ef26c161836e2f9e10ba2e0db033729f483.tar.gz |
cxgbe/tom: List IFCAP_TOE6 as supported now that all the required pieces
are in place. You still have to enable it explicitly, after loading the
t4_tom KLD.
-rw-r--r-- | sys/dev/cxgbe/t4_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/cxgbe/t4_main.c b/sys/dev/cxgbe/t4_main.c index fd78482..a2fd014 100644 --- a/sys/dev/cxgbe/t4_main.c +++ b/sys/dev/cxgbe/t4_main.c @@ -875,7 +875,7 @@ cxgbe_attach(device_t dev) ifp->if_capabilities = T4_CAP; #ifdef TCP_OFFLOAD if (is_offload(pi->adapter)) - ifp->if_capabilities |= IFCAP_TOE4; + ifp->if_capabilities |= IFCAP_TOE; #endif ifp->if_capenable = T4_CAP_ENABLE; ifp->if_hwassist = CSUM_TCP | CSUM_UDP | CSUM_IP | CSUM_TSO | |