From af7fb04b81c765c3e3f621c6b23fc3390310715b Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Thu, 15 Jul 2021 11:54:41 +0200 Subject: misc: replace CLIB_PREFETCH with clib_prefetch_{load,store} Type: refactor Change-Id: Id10cbf52e8f2dd809080a228d8fa282308be84ac Signed-off-by: Damjan Marion --- src/vlib/buffer_node.h | 4 ++-- src/vlib/counter.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/vlib') diff --git a/src/vlib/buffer_node.h b/src/vlib/buffer_node.h index 9fece67f31f..9ca43d425fc 100644 --- a/src/vlib/buffer_node.h +++ b/src/vlib/buffer_node.h @@ -287,8 +287,8 @@ generic_buffer_node_inline (vlib_main_t * vm, vlib_prefetch_buffer_header (p2, LOAD); vlib_prefetch_buffer_header (p3, LOAD); - CLIB_PREFETCH (p2->data, 64, LOAD); - CLIB_PREFETCH (p3->data, 64, LOAD); + clib_prefetch_load (p2->data); + clib_prefetch_load (p3->data); } pi0 = to_next[0] = from[0]; diff --git a/src/vlib/counter.h b/src/vlib/counter.h index 01aefd8ebc0..9f5654292b9 100644 --- a/src/vlib/counter.h +++ b/src/vlib/counter.h @@ -254,7 +254,7 @@ vlib_prefetch_combined_counter (const vlib_combined_counter_main_t * cm, * This CPU's index is assumed to already be in cache */ cpu_counters = cm->counters[thread_index]; - CLIB_PREFETCH (cpu_counters + index, CLIB_CACHE_LINE_BYTES, STORE); + clib_prefetch_store (cpu_counters + index); } -- cgit 1.2.3-korg