[PATCH] test/fib: fix RCU tests
David Marchand
david.marchand at redhat.com
Tue Oct 15 09:51:11 CEST 2024
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 <david.marchand at redhat.com>
Acked-by: Robin Jarry <rjarry at redhat.com>
---
Note: applied directly on main to fix random fib unit tests failure in CI.
---
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 08650e41ff..15035ee045 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;
--
2.46.2
More information about the dev
mailing list