diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2022-10-17 18:26:23 +0000 |
---|---|---|
committer | Mohsin Kazmi <sykazmi@cisco.com> | 2022-10-17 18:31:47 +0000 |
commit | 79f6dbac755573d58c3a27a732f24fe65f411831 (patch) | |
tree | 3138239c39e6a36f072c9d15cd1afc71715ea044 /src/vnet | |
parent | 19a168496b91b5266908a68f7caa25c83b751923 (diff) |
gso: fix the metadata for gro packets
Type: fix
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Change-Id: I3a059b9dcbbcb597a7822f4f35fb275a7c197647
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/gso/gro_func.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/gso/gro_func.h b/src/vnet/gso/gro_func.h index 1f50b28cc20..e2e4e93850b 100644 --- a/src/vnet/gso/gro_func.h +++ b/src/vnet/gso/gro_func.h @@ -384,6 +384,7 @@ gro_fixup_header (vlib_main_t *vm, vlib_buffer_t *b0, u32 ack_number, u8 is_l2) 1 /* is_ip6 */ ); vnet_buffer2 (b0)->gso_size = b0->current_length - gho0.hdr_sz; + vnet_buffer (b0)->l2_hdr_offset = b0->current_data; if (gho0.gho_flags & GHO_F_IP4) { @@ -412,6 +413,7 @@ gro_fixup_header (vlib_main_t *vm, vlib_buffer_t *b0, u32 ack_number, u8 is_l2) tcp_header_t *tcp0 = (tcp_header_t *) (vlib_buffer_get_current (b0) + gho0.l4_hdr_offset); vnet_buffer (b0)->l4_hdr_offset = (u8 *) tcp0 - b0->data; + vnet_buffer2 (b0)->gso_l4_hdr_sz = tcp_header_bytes (tcp0); tcp0->ack_number = ack_number; b0->flags &= ~VLIB_BUFFER_IS_TRACED; } |