diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2021-05-05 14:26:38 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-05-06 10:28:02 +0000 |
commit | 36f7a6aeb021a549f2d684868303c9891bc0dd00 (patch) | |
tree | 730f3b7ed52c07e52d863d5f467debcb4c4ca8c7 /src/plugins/avf | |
parent | 11e0d752e67ac3da804e2af798d12995ae401434 (diff) |
vlib: fix the offload flags size
Type: fix
Change-Id: I433fe3799975fe3ba00fa30226f6e8dae34e88fc
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/plugins/avf')
-rw-r--r-- | src/plugins/avf/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/avf/output.c b/src/plugins/avf/output.c index 7b940eb57f3..b50a1e23c7a 100644 --- a/src/plugins/avf/output.c +++ b/src/plugins/avf/output.c @@ -60,7 +60,7 @@ avf_tx_prepare_cksum (vlib_buffer_t * b, u8 is_tso) if (!is_tso && !(b->flags & VNET_BUFFER_F_OFFLOAD)) return 0; - u32 oflags = vnet_buffer (b)->oflags; + vnet_buffer_oflags_t oflags = vnet_buffer (b)->oflags; u32 is_tcp = is_tso || oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM; u32 is_udp = !is_tso && oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM; u32 is_ip4 = b->flags & VNET_BUFFER_F_IS_IP4; |