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/vnet/interface_output.h | |
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/vnet/interface_output.h')
-rw-r--r-- | src/vnet/interface_output.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/vnet/interface_output.h b/src/vnet/interface_output.h index bb27cdb616e..15b0a1d3ccc 100644 --- a/src/vnet/interface_output.h +++ b/src/vnet/interface_output.h @@ -44,7 +44,8 @@ static_always_inline void vnet_calc_ip4_checksums (vlib_main_t *vm, vlib_buffer_t *b, ip4_header_t *ip4, - tcp_header_t *th, udp_header_t *uh, u32 oflags) + tcp_header_t *th, udp_header_t *uh, + vnet_buffer_oflags_t oflags) { if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM) ip4->checksum = ip4_header_checksum (ip4); @@ -62,7 +63,8 @@ vnet_calc_ip4_checksums (vlib_main_t *vm, vlib_buffer_t *b, ip4_header_t *ip4, static_always_inline void vnet_calc_ip6_checksums (vlib_main_t *vm, vlib_buffer_t *b, ip6_header_t *ip6, - tcp_header_t *th, udp_header_t *uh, u32 oflags) + tcp_header_t *th, udp_header_t *uh, + vnet_buffer_oflags_t oflags) { int bogus; if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM) @@ -85,7 +87,7 @@ vnet_calc_checksums_inline (vlib_main_t * vm, vlib_buffer_t * b, ip6_header_t *ip6; tcp_header_t *th; udp_header_t *uh; - u32 oflags; + vnet_buffer_oflags_t oflags; if (!(b->flags & VNET_BUFFER_F_OFFLOAD)) return; |