From 66d4cb5a217d556aa7bd2471f02a39badb6d5cd2 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Thu, 17 Mar 2022 18:59:46 +0100 Subject: vppinfra: refactor *_will_expand() functions Type: refactor Change-Id: I3625eacf9e04542ca8778df5d46075a8654642c7 Signed-off-by: Damjan Marion --- src/vnet/dpo/dpo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vnet/dpo/dpo.h') diff --git a/src/vnet/dpo/dpo.h b/src/vnet/dpo/dpo.h index e9976c2dd87..470359df95c 100644 --- a/src/vnet/dpo/dpo.h +++ b/src/vnet/dpo/dpo.h @@ -543,7 +543,7 @@ dpo_get_next_node_by_type_and_proto (dpo_type_t child_type, #define dpo_pool_barrier_sync(VM,P,YESNO) \ do { \ - pool_get_aligned_will_expand ((P), YESNO, CLIB_CACHE_LINE_BYTES); \ + YESNO = pool_get_will_expand (P); \ \ if (YESNO) \ { \ -- cgit 1.2.3-korg