diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2021-04-23 15:16:50 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-05-05 11:10:51 +0000 |
commit | a7e830ed468f35590871988e68153222325870b8 (patch) | |
tree | 6a92f425056bf061e7df502e9c6235cfaf2ca62a /src/vnet/buffer.c | |
parent | baa18701b9d54d8924771c25b96bd5d99472b7ad (diff) |
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 <sykazmi@cisco.com>
Diffstat (limited to 'src/vnet/buffer.c')
-rw-r--r-- | src/vnet/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/buffer.c b/src/vnet/buffer.c index b41036d8124..545018a79e9 100644 --- a/src/vnet/buffer.c +++ b/src/vnet/buffer.c @@ -22,7 +22,7 @@ format_vnet_buffer_offload (u8 *s, va_list *args) vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *); #define _(bit, name, ss, v) \ - if (v && (vnet_buffer2 (b)->oflags & VNET_BUFFER_OFFLOAD_F_##name)) \ + if (v && (vnet_buffer (b)->oflags & VNET_BUFFER_OFFLOAD_F_##name)) \ s = format (s, "%s ", ss); foreach_vnet_buffer_offload_flag #undef _ |