From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 20808A04CC; Sat, 12 Sep 2020 21:53:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 909394F9A; Sat, 12 Sep 2020 21:53:46 +0200 (CEST) Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) by dpdk.org (Postfix) with ESMTP id 1A5D1160; Sat, 12 Sep 2020 21:53:45 +0200 (CEST) X-Originating-IP: 86.254.165.59 Received: from u256.net (lfbn-poi-1-843-59.w86-254.abo.wanadoo.fr [86.254.165.59]) (Authenticated sender: grive@u256.net) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 1B78D20005; Sat, 12 Sep 2020 19:53:42 +0000 (UTC) Date: Sat, 12 Sep 2020 21:53:37 +0200 From: =?utf-8?Q?Ga=C3=ABtan?= Rivet To: Muhammad Bilal Cc: ferruh.yigit@intel.com, anatoly.burakov@intel.com, vipin.varghese@intel.com, jgrajcia@cisco.com, jerinj@marvell.com, dev@dpdk.org, stable@dpdk.org Message-ID: <20200912195337.734ez2cumf6x7hxp@u256.net> References: <20200708120329.103200-1-m.bilal@emumba.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20200708120329.103200-1-m.bilal@emumba.com> Subject: Re: [dpdk-dev] [PATCH] EAL: Called remove() of drivers for vdev and pci buses X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 08/07/20 17:03 +0500, Muhammad Bilal wrote: > while using memif with app, the resources are not cleaned on exit, > So an error occurred on running it second time. The cause of this problem > is that remove() of memif driver is not called by rte_eal_cleanup() which > is counterpart of probe() called from rte_eal_init(). This is a case for > all other divers e.g pci, so to solve this problem I have added the > functionality of calling remove() function of all the driver attached to > devices on vdev and pci buses. > Hi Muhammad, review inline. > Bugzilla ID: 353 > Signed-off-by: Muhammad Bilal > --- > drivers/bus/pci/pci_common.c | 23 +++++++++++++++++++++++ > drivers/bus/vdev/vdev.c | 19 ++++++++++++++++++- > lib/librte_eal/common/eal_common_bus.c | 18 ++++++++++++++++++ > lib/librte_eal/include/rte_bus.h | 23 +++++++++++++++++++++++ > lib/librte_eal/linux/eal.c | 2 ++ > 5 files changed, 84 insertions(+), 1 deletion(-) > > diff --git a/drivers/bus/pci/pci_common.c b/drivers/bus/pci/pci_common.c > index 245d94f59..203b32a23 100644 > --- a/drivers/bus/pci/pci_common.c > +++ b/drivers/bus/pci/pci_common.c > @@ -320,6 +320,28 @@ pci_probe(void) > return (probed && probed == failed) ? -1 : 0; > } > > +/* > + * Scan the content of the PCI bus, and call the remove() function for > + * all registered drivers of devices that have already been probed. > + */ You are not scanning the content of the PCI bus here. The PCI bus referred in this comment is the actual, physical one. It is only scanned during rte_pci_scan. You are iterating registered PCI devices and removing them. > +static int > +pci_remove(void) > +{ > + struct rte_pci_device *dev = NULL; > + int ret = 0; > + > + FOREACH_DEVICE_ON_PCIBUS(dev) { > + if (rte_dev_is_probed(&dev->device)) > + if (rte_pci_detach_dev(dev) != 0) { > + RTE_LOG(INFO, EAL, > + "failed to detach driver form %s\n", s/form/from/ > + dev->device.name); > + ret = -1; > + } Memory is leaked from not freeing the rte_pci_device here. The device iterator must be made safe (using TAILQ_FOREACH_SAFE) and the dev pointer removed from the list and freed. There might be other resources still open. > + } > + return ret; > +} > + > /* dump one device */ > static int > pci_dump_one_device(FILE *f, struct rte_pci_device *dev) > @@ -669,6 +691,7 @@ struct rte_pci_bus rte_pci_bus = { > .bus = { > .scan = rte_pci_scan, > .probe = pci_probe, > + .remove = pci_remove, > .find_device = pci_find_device, > .plug = pci_plug, > .unplug = pci_unplug, > diff --git a/drivers/bus/vdev/vdev.c b/drivers/bus/vdev/vdev.c > index a89ea2353..692c936b9 100644 > --- a/drivers/bus/vdev/vdev.c > +++ b/drivers/bus/vdev/vdev.c > @@ -546,6 +546,22 @@ vdev_unplug(struct rte_device *dev) > return rte_vdev_uninit(dev->name); > } > > +static int > +vdev_remove(void) > +{ > + struct rte_vdev_device *dev; > + int ret = 0; > + > + TAILQ_FOREACH(dev, &vdev_device_list, next) { > + if (vdev_remove_driver(dev) != 0) { > + VDEV_LOG(INFO, "driver of %s is not removed\n", > + dev->device.name); > + ret = -1; > + } > + } Same as PCI bus, it should be made safe and the dev pointer removed from the TAILQ and freed as well. > + return ret; > +} > + > static struct rte_bus rte_vdev_bus = { > .scan = vdev_scan, > .probe = vdev_probe, > @@ -554,7 +570,8 @@ static struct rte_bus rte_vdev_bus = { > .unplug = vdev_unplug, > .parse = vdev_parse, > .dev_iterate = rte_vdev_dev_iterate, > -}; > + .remove = vdev_remove, > + }; > > RTE_REGISTER_BUS(vdev, rte_vdev_bus); > > diff --git a/lib/librte_eal/common/eal_common_bus.c b/lib/librte_eal/common/eal_common_bus.c > index baa5b532a..bff95a0ae 100644 > --- a/lib/librte_eal/common/eal_common_bus.c > +++ b/lib/librte_eal/common/eal_common_bus.c > @@ -85,6 +85,24 @@ rte_bus_probe(void) > return 0; > } > > +/* Remove all devices of all buses */ > +int > +rte_bus_remove(void) > +{ > + int ret; > + struct rte_bus *bus; > + > + TAILQ_FOREACH(bus, &rte_bus_list, next) { > + if (!strcmp(bus->name, "vdev") || !strcmp(bus->name, "pci")) { You should only check that the bus sets the ops, not how the bus is named. > + ret = bus->remove(); > + if (ret) > + RTE_LOG(INFO, EAL, "Bus (%s) remove failed.\n", > + bus->name); > + } > + } > + return 0; > +} > + > /* Dump information of a single bus */ > static int > bus_dump_one(FILE *f, struct rte_bus *bus) > diff --git a/lib/librte_eal/include/rte_bus.h b/lib/librte_eal/include/rte_bus.h > index d3034d0ed..c3e7e62c9 100644 > --- a/lib/librte_eal/include/rte_bus.h > +++ b/lib/librte_eal/include/rte_bus.h > @@ -67,6 +67,18 @@ typedef int (*rte_bus_scan_t)(void); > */ > typedef int (*rte_bus_probe_t)(void); > > +/** > + * Implementation specific remove function which is responsible for unlinking > + * devices on that bus from attached drivers. > + * > + * This is called while iterating over each registered bus. > + * > + * @return > + * 0 for successful remove > + * !0 for any error while removing > + */ > +typedef int (*rte_bus_remove_t)(void); > + > /** > * Device iterator to find a device on a bus. > * > @@ -248,6 +260,7 @@ struct rte_bus { > const char *name; /**< Name of the bus */ > rte_bus_scan_t scan; /**< Scan for devices attached to bus */ > rte_bus_probe_t probe; /**< Probe devices on bus */ > + rte_bus_remove_t remove; /**< remove device on bus */ Missing capital R from 'remove', 'device' should be plural. 'Remove devices from the bus' would read a bit better. > rte_bus_find_device_t find_device; /**< Find a device on the bus */ > rte_bus_plug_t plug; /**< Probe single device for drivers */ > rte_bus_unplug_t unplug; /**< Remove single device from driver */ > @@ -301,6 +314,16 @@ int rte_bus_scan(void); > */ > int rte_bus_probe(void); > > +/** > + * For each device on the buses,call the driver-specific remove Missing a space after the comma. > + * for device uninitialization. > + * > + * @return > + * 0 for successful match/probe You missed replacing match/probe here. > + * !0 otherwise > + */ > +int rte_bus_remove(void); > + > /** > * Dump information of all the buses registered with EAL. > * > diff --git a/lib/librte_eal/linux/eal.c b/lib/librte_eal/linux/eal.c > index f162124a3..89a03d3bb 100644 > --- a/lib/librte_eal/linux/eal.c > +++ b/lib/librte_eal/linux/eal.c > @@ -1330,6 +1330,8 @@ mark_freeable(const struct rte_memseg_list *msl, const struct rte_memseg *ms, > int > rte_eal_cleanup(void) > { > + /* Remove devices/drivers from all buses */ > + rte_bus_remove(); You've made your API return an int, but ignored drivers return code and always return 0. That could be fine, but you also ignore it here anyway. At this point just make it void, unless some error handling can be done. There are variable definitions following in this function, why is this call first? It seems to be called only from linux EAL, why not BSD and Windows as well? > /* if we're in a primary process, we need to mark hugepages as freeable > * so that finalization can release them back to the system. > */ > -- > 2.25.1 > -- Gaƫtan