diff options
author | Mohammed Hawari <mohammed@hawari.fr> | 2021-01-13 13:45:45 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-01-19 15:17:26 +0000 |
commit | 533ac64330436752f82477973e4587e2197c4719 (patch) | |
tree | f9aebf18143ddbe7f5106b00f1c40fcbb738ea5a | |
parent | 2c91922ebcaced5b5418d1e0e52dbfc2b6cdc062 (diff) |
avf: fix l2_len for csum offload
Use vlib_buffer_t::current_data instead of
vnet_buffer_opaque_t::l2_hdr_offset to compute l2_len for checksum
offload (l2_hdr_offset might be invalid if packet originates from an L3
interface)
Change-Id: I2031ea6fd6a7af4b6e186751e119ebd6161641b5
Type: fix
Signed-off-by: Mohammed Hawari <mohammed@hawari.fr>
-rw-r--r-- | src/plugins/avf/output.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/plugins/avf/output.c b/src/plugins/avf/output.c index 55a01c76fb1..952d151117c 100644 --- a/src/plugins/avf/output.c +++ b/src/plugins/avf/output.c @@ -67,7 +67,7 @@ avf_tx_prepare_cksum (vlib_buffer_t * b, u8 is_tso) u32 is_ip6 = b->flags & VNET_BUFFER_F_IS_IP6; ASSERT (!is_tcp || !is_udp); ASSERT (is_ip4 || is_ip6); - i16 l2_hdr_offset = vnet_buffer (b)->l2_hdr_offset; + i16 l2_hdr_offset = b->current_data; i16 l3_hdr_offset = vnet_buffer (b)->l3_hdr_offset; i16 l4_hdr_offset = vnet_buffer (b)->l4_hdr_offset; u16 l2_len = l3_hdr_offset - l2_hdr_offset; @@ -156,9 +156,8 @@ avf_tx_fill_ctx_desc (vlib_main_t * vm, avf_txq_t * txq, avf_tx_desc_t * d, /* Acquire a reference on the placeholder buffer */ ctx_ph->ref_count++; - u16 l234hdr_sz = - vnet_buffer (b)->l4_hdr_offset - - vnet_buffer (b)->l2_hdr_offset + vnet_buffer2 (b)->gso_l4_hdr_sz; + u16 l234hdr_sz = vnet_buffer (b)->l4_hdr_offset - b->current_data + + vnet_buffer2 (b)->gso_l4_hdr_sz; u16 tlen = vlib_buffer_length_in_chain (vm, b) - l234hdr_sz; d[0].qword[0] = 0; d[0].qword[1] = AVF_TXD_DTYP_CTX | AVF_TXD_CTX_CMD_TSO |