DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/cpfl: reset devargs during the first probe
@ 2023-10-11 16:47 beilei.xing
  2023-10-12  1:24 ` Zhang, Qi Z
  2023-10-12  6:54 ` Wu, Jingjing
  0 siblings, 2 replies; 5+ messages in thread
From: beilei.xing @ 2023-10-11 16:47 UTC (permalink / raw)
  To: jingjing.wu; +Cc: dev, Beilei Xing

From: Beilei Xing <beilei.xing@intel.com>

Reset devargs during the first probe. Otherwise, probe again will
be affected.

Fixes: a607312291b3 ("net/cpfl: support probe again")

Signed-off-by: Beilei Xing <beilei.xing@intel.com>
---
 drivers/net/cpfl/cpfl_ethdev.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/drivers/net/cpfl/cpfl_ethdev.c
index 762fbddfe6..890a027a1d 100644
--- a/drivers/net/cpfl/cpfl_ethdev.c
+++ b/drivers/net/cpfl/cpfl_ethdev.c
@@ -1611,11 +1611,12 @@ cpfl_parse_devargs(struct rte_pci_device *pci_dev, struct cpfl_adapter_ext *adap
 	struct rte_kvargs *kvlist;
 	int ret;
 
-	cpfl_args->req_vport_nb = 0;
-
 	if (devargs == NULL)
 		return 0;
 
+	if (first)
+		memset(cpfl_args, 0, sizeof(struct cpfl_devargs));
+
 	kvlist = rte_kvargs_parse(devargs->args,
 			first ? cpfl_valid_args_first : cpfl_valid_args_again);
 	if (kvlist == NULL) {
@@ -1628,7 +1629,6 @@ cpfl_parse_devargs(struct rte_pci_device *pci_dev, struct cpfl_adapter_ext *adap
 		return -EINVAL;
 	}
 
-	cpfl_args->repr_args_num = 0;
 	ret = rte_kvargs_process(kvlist, CPFL_REPRESENTOR, &parse_repr, cpfl_args);
 
 	if (ret != 0)
-- 
2.34.1


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

end of thread, other threads:[~2023-10-16  3:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-11 16:47 [PATCH] net/cpfl: reset devargs during the first probe beilei.xing
2023-10-12  1:24 ` Zhang, Qi Z
2023-10-12  6:54 ` Wu, Jingjing
2023-10-12  7:42   ` Xing, Beilei
2023-10-16  3:57     ` Zhang, Qi Z

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