Hi, 27/09/2018 10:24, Ophir Munk: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > The function rte_devargs_remove(), which is intended to be internal, can > > take a devargs structure as argument. > > The matching is still using string comparison of bus name and device name. > > It is simpler and may allow a different devargs matching in future. [...] > > --- a/lib/librte_eal/common/eal_common_dev.c > > +++ b/lib/librte_eal/common/eal_common_dev.c > > @@ -186,7 +186,7 @@ int __rte_experimental rte_eal_hotplug_add(const > > char *busname, const char *devn > > return 0; > > > > err_devarg: > > - if (rte_devargs_remove(busname, devname)) { > > + if (rte_devargs_remove(da)) { > > Can you please explain why calling with 'da' parameter > (which may have different internal fields of busname and devname > than the explicit busname and devname parameters) - is correct?
Before devargs is parsed and inserted in the global list, devargs values are NULL, so nothing is found (as before this patch). rte_devargs_remove(da) will have no effect and will return 1, so the devargs will be freed by code in the if block. When devargs is inserted in the list, it will have the values of busname and devname, so it is the same as before this patch. However, there may be an issue dereferencing devargs->bus->name when devargs is not parsed. I must add this code in rte_devargs_remove: if (devargs->bus == NULL) return 1; [...] > > @@ -227,7 +227,7 @@ rte_eal_hotplug_remove(const char *busname, > > const char *devname) > > if (ret) > > RTE_LOG(ERR, EAL, "Driver cannot detach the device > > (%s)\n", > > dev->name); > > - rte_devargs_remove(busname, devname); > > + rte_devargs_remove(dev->devargs); > > Can you please explain why calling with 'dev->devargs' parameter > (which may have different internal fields of busname and devname > than the explicit busname and devname parameters) - is correct? The device is found by checking the busname and devname. I don't see how the devargs values may be different.