DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2] eal: fix to set the rte_device ptr's device args before hotplug
@ 2020-02-14  6:43 Somnath Kotur
  2020-02-14  8:24 ` Gaetan Rivet
       [not found] ` <CAOBf=mvnb_o90qfN43i3zBYRCLEDQx7W40G+q_41j3f+c7J5Zg@mail.gmail.com>
  0 siblings, 2 replies; 4+ messages in thread
From: Somnath Kotur @ 2020-02-14  6:43 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

As per the comments in this code section, since there is a matching device,
it is now its responsibility to manage the devargs we've just inserted.
But the matching device ptr's devargs is still uninitialized or not pointing
to the newest dev_args that were passed as a parameter to local_dev_probe().
This is needed particularly in the case when *probe is called again* on an
already probed device as part of adding a representor port to an OVS switch(OVS-DPDK)

Fixes: 7e8b26650146 ("eal: fix hotplug add / remove")
Signed-off-by: Somnath Kotur <somnath.kotur@broadcom.com>
---
v1->v2: Incorporated suggestions from Gaetan Rivet
 drivers/bus/pci/linux/pci.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/bus/pci/linux/pci.c b/drivers/bus/pci/linux/pci.c
index 740a2cd..71b0a30 100644
--- a/drivers/bus/pci/linux/pci.c
+++ b/drivers/bus/pci/linux/pci.c
@@ -377,6 +377,11 @@
 						 */
 						RTE_LOG(ERR, EAL, "Unexpected device scan at %s!\n",
 							filename);
+					else if (dev2->device.devargs !=
+						 dev->device.devargs) {
+						rte_devargs_remove(dev2->device.devargs);
+						pci_name_set(dev2);
+					}
 				}
 				free(dev);
 			}
-- 
1.8.3.1


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

end of thread, other threads:[~2020-03-31  0:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-14  6:43 [dpdk-dev] [PATCH v2] eal: fix to set the rte_device ptr's device args before hotplug Somnath Kotur
2020-02-14  8:24 ` Gaetan Rivet
2020-03-31  0:52   ` Thomas Monjalon
     [not found] ` <CAOBf=mvnb_o90qfN43i3zBYRCLEDQx7W40G+q_41j3f+c7J5Zg@mail.gmail.com>
     [not found]   ` <e835ea74-38d9-e594-1223-f392c88bdbb6@intel.com>
     [not found]     ` <2210365.oX9e4DgFVH@xps>
2020-03-20  4:21       ` Somnath Kotur

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