From 19d463aacd5a5345365075db65deb8e9b3003654 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Tue, 15 Oct 2024 09:11:33 +0200 Subject: [PATCH] test/fib: fix RCU tests The flags field must be initialized to 0 following commit e194f3cd5685 ("fib: lookup IPv4 address in network order"). This was missed when merging the FIB RCU reclaim. Fixes: 96c3d06a3547 ("fib: implement RCU rule reclamation") Signed-off-by: David Marchand Acked-by: Robin Jarry --- app/test/test_fib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test/test_fib.c b/app/test/test_fib.c index 08650e41ff7..15035ee0458 100644 --- a/app/test/test_fib.c +++ b/app/test/test_fib.c @@ -389,7 +389,7 @@ int32_t test_invalid_rcu(void) { struct rte_fib *fib = NULL; - struct rte_fib_conf config; + struct rte_fib_conf config = { 0 }; size_t sz; struct rte_rcu_qsbr *qsv; struct rte_rcu_qsbr *qsv2; @@ -503,7 +503,7 @@ test_fib_rcu_qsbr_reader(void *arg) int32_t test_fib_rcu_sync_rw(void) { - struct rte_fib_conf config; + struct rte_fib_conf config = { 0 }; size_t sz; int32_t status; uint32_t i, next_hop;