diff options
author | Matthew Smith <mgsmith@netgate.com> | 2017-12-18 14:19:07 -0600 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-01-09 20:22:14 +0000 |
commit | a5fb2cf8be8298e589c2b619f7e907a0a1d76262 (patch) | |
tree | 70d2730f421e51dd1579f096690c534f02b4b42b /src/plugins | |
parent | 8554f8adcc97b10eee674762307bfb2ede76d722 (diff) |
Patch ENA PMD to skip setting tx flags in rx path
On rx, the ENA PMD sets tx offload flags based on the
received packet's l4 protocol. This means you need
to turn off those offloads for every packet if you
encapsulate packets arriving on an interface using
that PMD. Disable this behavior.
Change-Id: Icae9f32e3d292d767da440ae5c1280902bdaa083
Signed-off-by: Matthew Smith <mgsmith@netgate.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/dpdk/device/format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/dpdk/device/format.c b/src/plugins/dpdk/device/format.c index 8ea65c12ce2..d9ee2bd2b83 100644 --- a/src/plugins/dpdk/device/format.c +++ b/src/plugins/dpdk/device/format.c @@ -726,7 +726,7 @@ format_dpdk_rte_mbuf (u8 * s, va_list * va) u32 indent = format_get_indent (s) + 2; s = format (s, "PKT MBUF: port %d, nb_segs %d, pkt_len %d" - "\n%Ubuf_len %d, data_len %d, ol_flags 0x%x, data_off %d, phys_addr 0x%x" + "\n%Ubuf_len %d, data_len %d, ol_flags 0x%lx, data_off %d, phys_addr 0x%x" "\n%Upacket_type 0x%x l2_len %u l3_len %u outer_l2_len %u outer_l3_len %u", mb->port, mb->nb_segs, mb->pkt_len, format_white_space, indent, |