DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] ethdev: restore eth_da init at startup of rte_eth_devargs_parse()
@ 2024-03-11 11:44 Thierry Herbelot
  2024-03-11 11:51 ` [V2] " Thierry Herbelot
  0 siblings, 1 reply; 5+ messages in thread
From: Thierry Herbelot @ 2024-03-11 11:44 UTC (permalink / raw)
  To: dev; +Cc: Thierry Herbelot, Thomas Monjalon, Harman Kalra, Ferruh Yigit

Commit 9a9eb104ed ("ethdev: parse multiple representor devargs") removes
the following variable initialization in rte_eth_devargs_parse():

    memset(eth_da, 0, sizeof(*eth_da));

Restore the memset, as this causes regression in ixgbe PCI probe.

Fixes: 9a9eb104ed ("ethdev: parse multiple representor devargs")
Signed-off-by: Thierry Herbelot <thierry.herbelot@6wind.com>
---
 lib/ethdev/ethdev_driver.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/ethdev/ethdev_driver.c b/lib/ethdev/ethdev_driver.c
index 1660dd3f2a46..7513b990157f 100644
--- a/lib/ethdev/ethdev_driver.c
+++ b/lib/ethdev/ethdev_driver.c
@@ -617,6 +617,8 @@ rte_eth_devargs_parse(const char *dargs, struct rte_eth_devargs *eth_devargs,
 	unsigned int i;
 	int result = 0;
 
+	memset(eth_da, 0, sizeof(*eth_da));
+
 	result = eth_dev_devargs_tokenise(&args, dargs);
 	if (result < 0)
 		goto parse_cleanup;
-- 
2.39.2


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-03-11 14:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-11 11:44 [PATCH] ethdev: restore eth_da init at startup of rte_eth_devargs_parse() Thierry Herbelot
2024-03-11 11:51 ` [V2] " Thierry Herbelot
2024-03-11 11:57   ` [V3] ethdev: restore eth_devargs " Thierry Herbelot
2024-03-11 12:55     ` [V4] ethdev: restore eth_da " Thierry Herbelot
2024-03-11 14:56       ` Ferruh Yigit

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).