DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] test/fib: fix RCU tests
@ 2024-10-15  7:51 David Marchand
  0 siblings, 0 replies; only message in thread
From: David Marchand @ 2024-10-15  7:51 UTC (permalink / raw)
  To: dev; +Cc: Robin Jarry, Vladimir Medvedkin, Stephen Hemminger

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@redhat.com>
Acked-by: Robin Jarry <rjarry@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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-10-15  7:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-15  7:51 [PATCH] test/fib: fix RCU tests David Marchand

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).