[V2] ethdev: restore eth_da init at startup of rte_eth_devargs_parse()

Message ID 20240311115129.2708247-1-thierry.herbelot@6wind.com (mailing list archive)
State Superseded, archived
Delegated to: Ferruh Yigit
Headers
Series [V2] ethdev: restore eth_da init at startup of rte_eth_devargs_parse() |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation fail Compilation issues
ci/loongarch-compilation fail ninja build failure

Commit Message

Thierry Herbelot March 11, 2024, 11:51 a.m. UTC
  Commit 9a9eb104edf6 ("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: 9a9eb104edf6 ("ethdev: parse multiple representor devargs")
Signed-off-by: Thierry Herbelot <thierry.herbelot@6wind.com>
---
V2: fix git hash length

 lib/ethdev/ethdev_driver.c | 2 ++
 1 file changed, 2 insertions(+)
  

Patch

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;