From a7e830ed468f35590871988e68153222325870b8 Mon Sep 17 00:00:00 2001 From: Mohsin Kazmi Date: Fri, 23 Apr 2021 15:16:50 +0200 Subject: vlib: move offload flags to 1st cacheline in vlib_buffer_t Type: improvement Some tests i.e. ipsec see performance regression when offload flags are moved to 2nd cacheline. This patch moves them back to 1st cacheline. Change-Id: I6ead45ff6d2c467b0d248f409e27c2ba31758741 Signed-off-by: Mohsin Kazmi --- src/vnet/ipsec/ipsec_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vnet/ipsec') diff --git a/src/vnet/ipsec/ipsec_output.c b/src/vnet/ipsec/ipsec_output.c index 527aea5d11d..598195f2737 100644 --- a/src/vnet/ipsec/ipsec_output.c +++ b/src/vnet/ipsec/ipsec_output.c @@ -309,7 +309,7 @@ ipsec_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node, if (PREDICT_FALSE (b0->flags & VNET_BUFFER_F_OFFLOAD)) { - u32 oflags = vnet_buffer2 (b0)->oflags; + u32 oflags = vnet_buffer (b0)->oflags; /* * Clearing offload flags before checksum is computed -- cgit 1.2.3-korg