diff options
| author | Marius Strobl <marius@FreeBSD.org> | 2018-08-13 20:29:39 +0000 |
|---|---|---|
| committer | Marius Strobl <marius@FreeBSD.org> | 2018-08-13 20:29:39 +0000 |
| commit | 73ed47f04f0940ff8475264382de86052d8efd02 (patch) | |
| tree | be09c0edb7e18875d1c8593febcb006c62e71a87 | |
| parent | acc173a6aaf135ad2b1533c857b154fdc6736aed (diff) | |
Notes
| -rw-r--r-- | sys/dev/e1000/if_em.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/e1000/if_em.c b/sys/dev/e1000/if_em.c index 5a22b11df332..a95d606ac34f 100644 --- a/sys/dev/e1000/if_em.c +++ b/sys/dev/e1000/if_em.c @@ -793,8 +793,8 @@ em_if_attach_pre(if_ctx_t ctx) scctx->isc_tx_tso_size_max = EM_TSO_SIZE; scctx->isc_tx_tso_segsize_max = EM_TSO_SEG_SIZE; scctx->isc_capabilities = scctx->isc_capenable = IGB_CAPS; - scctx->isc_tx_csum_flags = CSUM_TCP | CSUM_UDP | CSUM_TSO | CSUM_IP6_TCP \ - | CSUM_IP6_UDP | CSUM_IP6_TCP; + scctx->isc_tx_csum_flags = CSUM_TCP | CSUM_UDP | CSUM_TSO | + CSUM_IP6_TCP | CSUM_IP6_UDP; if (adapter->hw.mac.type != e1000_82575) scctx->isc_tx_csum_flags |= CSUM_SCTP | CSUM_IP6_SCTP; |
