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/pg/input.c | |
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/pg/input.c')
-rw-r--r-- | src/vnet/pg/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/pg/input.c b/src/vnet/pg/input.c index d3501b3e3b6..98db46abd6a 100644 --- a/src/vnet/pg/input.c +++ b/src/vnet/pg/input.c @@ -1544,7 +1544,7 @@ fill_buffer_offload_flags (vlib_main_t *vm, u32 *buffers, u32 n_buffers, { vlib_buffer_t *b0 = vlib_get_buffer (vm, buffers[i]); u8 l4_proto = 0; - u32 oflags = 0; + vnet_buffer_oflags_t oflags = 0; ethernet_header_t *eh = (ethernet_header_t *) vlib_buffer_get_current (b0); |