From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54]) by dpdk.org (Postfix) with ESMTP id 8C9E64CE4 for ; Tue, 6 Jun 2017 16:51:46 +0200 (CEST) Received: by mail-wm0-f54.google.com with SMTP id x70so38967294wme.0 for ; Tue, 06 Jun 2017 07:51:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to :user-agent; bh=v7u55wHu0tdbPtgwsNgnAGPp+QDHYL7VP8hX+K9LJGw=; b=GYAe3dx1jrLzcf4qXb3/R0lNLa9OPeGkkLuUAnUv3LLBUEoTWKma3EgTC5gB7T2HFd 9YIrR3CgF5q6rLhERswhoURhVfdVAUOLYKPcPbILviq2melJOFaDS+Ap59n4NOOC+vCv GgIKqDpe4qavWLMI0WyvYOEEkVnEjSfYnAaDbkjQZS4IGqrILllOut6cHg3+RxWTdPEV +03b71eVQ+XiKQULbHCoto65uIbZZPaJCv04neVfXxenYlCpjC3ofBGn29L4d9apLR+d o9s+XhbZAtD7I2H3fJ1A37RXj1OzL09vjdgv4sSvCbRsPpBgS5SmqNpRZuw7PrQ0nqeC s7ww== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to:user-agent; bh=v7u55wHu0tdbPtgwsNgnAGPp+QDHYL7VP8hX+K9LJGw=; b=Gd1GjmdsVxziVYgBabsgi9KFzIk+2ePSy7vQzFy3Mywz85uEtlDF7scwZzWKBVgBlA hKV3Qd1yAFdiVHax5X+3XC1A4b5pvvT3WqQCkQ7BtEXSatqto4Ny2SfdnW4M/XADzAfJ E5vJw0NuAnRUihp0VUdocsShcU6wNtfnIEwqmW5rKkGTqG0axa0medJf1AS//qS4JBbn wDdOJ0nmnuN9p25anzKdDzCQSt2tNbR+rmY+kSlSJB5OA+F4HZjVr+u4+0SO9yHECDpX Qr+foOKE3Vj4v2hSH0/4gWPDKL8GUst+3SUGe66A+GecaA73l7jnlCXUuwmCQeZLZzbW +zvQ== X-Gm-Message-State: AODbwcCbt1VvFDOyXU6wc4ly0cQD+rT5SsquWcOMJZL+SzcopOWOdD3Q e/MSTPS8APapHXvl X-Received: by 10.28.71.147 with SMTP id m19mr11473965wmi.92.1496760706050; Tue, 06 Jun 2017 07:51:46 -0700 (PDT) Received: from bidouze.vm.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id 64sm16468175wmn.20.2017.06.06.07.51.45 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 06 Jun 2017 07:51:45 -0700 (PDT) Date: Tue, 6 Jun 2017 16:51:40 +0200 From: =?iso-8859-1?Q?Ga=EBtan?= Rivet To: Jerin Jacob Cc: dev@dpdk.org, thomas@monjalon.net, bruce.richardson@intel.com, harry.van.haaren@intel.com, hemant.agrawal@nxp.com, gage.eads@intel.com, nipun.gupta@nxp.com Message-ID: <20170606145139.GM18840@bidouze.vm.6wind.com> References: <20170601164146.13501-1-jerin.jacob@caviumnetworks.com> <20170606141046.32103-1-jerin.jacob@caviumnetworks.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20170606141046.32103-1-jerin.jacob@caviumnetworks.com> User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH v2] eventdev: remove PCI dependency 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: , X-List-Received-Date: Tue, 06 Jun 2017 14:51:46 -0000 On Tue, Jun 06, 2017 at 07:40:46PM +0530, Jerin Jacob wrote: > Remove the PCI dependency from generic data structures > and moved the PCI specific code to rte_event_pmd_pci* > > CC: Gaetan Rivet > Signed-off-by: Jerin Jacob > --- > v2: > - Remove rte_pci.h from rte_eventdev.c(Gaetan) Unfortunately this is not sufficient. There is still rte_eventdev_pmd.h including rte_pci.h. As you said, it should be possible for the PMD API to include rte_pci.h, but this is at the condition that this layer is only included by PMDs, not the library itself. make rm build/include/rte_pci.h make lib/librte_eventdev_sub Should allow you to verify that everything is fine. > --- > drivers/event/skeleton/skeleton_eventdev.c | 30 +++++++++----- > lib/librte_eventdev/rte_eventdev.c | 38 +++++++----------- > lib/librte_eventdev/rte_eventdev.h | 2 - > lib/librte_eventdev/rte_eventdev_pmd.h | 63 ++++-------------------------- > 4 files changed, 41 insertions(+), 92 deletions(-) > > diff --git a/drivers/event/skeleton/skeleton_eventdev.c b/drivers/event/skeleton/skeleton_eventdev.c > index 800bd76e0..34684aba0 100644 > --- a/drivers/event/skeleton/skeleton_eventdev.c > +++ b/drivers/event/skeleton/skeleton_eventdev.c > @@ -427,18 +427,28 @@ static const struct rte_pci_id pci_id_skeleton_map[] = { > }, > }; > > -static struct rte_eventdev_driver pci_eventdev_skeleton_pmd = { > - .pci_drv = { > - .id_table = pci_id_skeleton_map, > - .drv_flags = RTE_PCI_DRV_NEED_MAPPING, > - .probe = rte_event_pmd_pci_probe, > - .remove = rte_event_pmd_pci_remove, > - }, > - .eventdev_init = skeleton_eventdev_init, > - .dev_private_size = sizeof(struct skeleton_eventdev), > +static int > +event_skeleton_pci_probe(struct rte_pci_driver *pci_drv, > + struct rte_pci_device *pci_dev) > +{ > + return rte_event_pmd_pci_probe(pci_drv, pci_dev, > + sizeof(struct skeleton_eventdev), skeleton_eventdev_init); > +} > + > +static int > +event_skeleton_pci_remove(struct rte_pci_device *pci_dev) > +{ > + return rte_event_pmd_pci_remove(pci_dev, NULL); > +} > + > +static struct rte_pci_driver pci_eventdev_skeleton_pmd = { > + .id_table = pci_id_skeleton_map, > + .drv_flags = RTE_PCI_DRV_NEED_MAPPING, > + .probe = event_skeleton_pci_probe, > + .remove = event_skeleton_pci_remove, > }; > > -RTE_PMD_REGISTER_PCI(event_skeleton_pci, pci_eventdev_skeleton_pmd.pci_drv); > +RTE_PMD_REGISTER_PCI(event_skeleton_pci, pci_eventdev_skeleton_pmd); > RTE_PMD_REGISTER_PCI_TABLE(event_skeleton_pci, pci_id_skeleton_map); > > /* VDEV based event device */ > diff --git a/lib/librte_eventdev/rte_eventdev.c b/lib/librte_eventdev/rte_eventdev.c > index 20afc3f0e..fd0406747 100644 > --- a/lib/librte_eventdev/rte_eventdev.c > +++ b/lib/librte_eventdev/rte_eventdev.c > @@ -45,7 +45,6 @@ > #include > #include > #include > -#include > #include > #include > #include > @@ -126,8 +125,6 @@ rte_event_dev_info_get(uint8_t dev_id, struct rte_event_dev_info *dev_info) > dev_info->dequeue_timeout_ns = dev->data->dev_conf.dequeue_timeout_ns; > > dev_info->dev = dev->dev; > - if (dev->driver) > - dev_info->driver_name = dev->driver->pci_drv.driver.name; > return 0; > } > > @@ -1250,18 +1247,18 @@ rte_event_pmd_vdev_uninit(const char *name) > > int > rte_event_pmd_pci_probe(struct rte_pci_driver *pci_drv, > - struct rte_pci_device *pci_dev) > + struct rte_pci_device *pci_dev, > + size_t private_data_size, > + eventdev_pmd_pci_callback_t devinit) > { > - struct rte_eventdev_driver *eventdrv; > struct rte_eventdev *eventdev; > > char eventdev_name[RTE_EVENTDEV_NAME_MAX_LEN]; > > int retval; > > - eventdrv = (struct rte_eventdev_driver *)pci_drv; > - if (eventdrv == NULL) > - return -ENODEV; > + if (devinit == NULL) > + return -EINVAL; > > rte_pci_device_name(&pci_dev->addr, eventdev_name, > sizeof(eventdev_name)); > @@ -1275,7 +1272,7 @@ rte_event_pmd_pci_probe(struct rte_pci_driver *pci_drv, > eventdev->data->dev_private = > rte_zmalloc_socket( > "eventdev private structure", > - eventdrv->dev_private_size, > + private_data_size, > RTE_CACHE_LINE_SIZE, > rte_socket_id()); > > @@ -1285,10 +1282,9 @@ rte_event_pmd_pci_probe(struct rte_pci_driver *pci_drv, > } > > eventdev->dev = &pci_dev->device; > - eventdev->driver = eventdrv; > > /* Invoke PMD device initialization function */ > - retval = (*eventdrv->eventdev_init)(eventdev); > + retval = devinit(eventdev); > if (retval == 0) > return 0; > > @@ -1307,12 +1303,12 @@ rte_event_pmd_pci_probe(struct rte_pci_driver *pci_drv, > } > > int > -rte_event_pmd_pci_remove(struct rte_pci_device *pci_dev) > +rte_event_pmd_pci_remove(struct rte_pci_device *pci_dev, > + eventdev_pmd_pci_callback_t devuninit) > { > - const struct rte_eventdev_driver *eventdrv; > struct rte_eventdev *eventdev; > char eventdev_name[RTE_EVENTDEV_NAME_MAX_LEN]; > - int ret; > + int ret = 0; > > if (pci_dev == NULL) > return -EINVAL; > @@ -1324,22 +1320,16 @@ rte_event_pmd_pci_remove(struct rte_pci_device *pci_dev) > if (eventdev == NULL) > return -ENODEV; > > - eventdrv = (const struct rte_eventdev_driver *)pci_dev->driver; > - if (eventdrv == NULL) > - return -ENODEV; > - > /* Invoke PMD device un-init function */ > - if (*eventdrv->eventdev_uninit) { > - ret = (*eventdrv->eventdev_uninit)(eventdev); > - if (ret) > - return ret; > - } > + if (devuninit) > + ret = devuninit(eventdev); > + if (ret) > + return ret; > > /* Free event device */ > rte_event_pmd_release(eventdev); > > eventdev->dev = NULL; > - eventdev->driver = NULL; > > return 0; > } > diff --git a/lib/librte_eventdev/rte_eventdev.h b/lib/librte_eventdev/rte_eventdev.h > index 20e7293e0..c5b2b7453 100644 > --- a/lib/librte_eventdev/rte_eventdev.h > +++ b/lib/librte_eventdev/rte_eventdev.h > @@ -1063,8 +1063,6 @@ struct rte_eventdev { > /**< Functions exported by PMD */ > struct rte_device *dev; > /**< Device info. supplied by probing */ > - const struct rte_eventdev_driver *driver; > - /**< Driver for this device */ > > RTE_STD_C11 > uint8_t attached : 1; > diff --git a/lib/librte_eventdev/rte_eventdev_pmd.h b/lib/librte_eventdev/rte_eventdev_pmd.h > index 4005b3c98..faa6989b4 100644 > --- a/lib/librte_eventdev/rte_eventdev_pmd.h > +++ b/lib/librte_eventdev/rte_eventdev_pmd.h > @@ -87,60 +87,6 @@ extern "C" { > #define RTE_EVENTDEV_DETACHED (0) > #define RTE_EVENTDEV_ATTACHED (1) > > -/** > - * Initialisation function of a event driver invoked for each matching > - * event PCI device detected during the PCI probing phase. > - * > - * @param dev > - * The dev pointer is the address of the *rte_eventdev* structure associated > - * with the matching device and which has been [automatically] allocated in > - * the *rte_event_devices* array. > - * > - * @return > - * - 0: Success, the device is properly initialised by the driver. > - * In particular, the driver MUST have set up the *dev_ops* pointer > - * of the *dev* structure. > - * - <0: Error code of the device initialisation failure. > - */ > -typedef int (*eventdev_init_t)(struct rte_eventdev *dev); > - > -/** > - * Finalisation function of a driver invoked for each matching > - * PCI device detected during the PCI closing phase. > - * > - * @param dev > - * The dev pointer is the address of the *rte_eventdev* structure associated > - * with the matching device and which has been [automatically] allocated in > - * the *rte_event_devices* array. > - * > - * @return > - * - 0: Success, the device is properly finalised by the driver. > - * In particular, the driver MUST free the *dev_ops* pointer > - * of the *dev* structure. > - * - <0: Error code of the device initialisation failure. > - */ > -typedef int (*eventdev_uninit_t)(struct rte_eventdev *dev); > - > -/** > - * The structure associated with a PMD driver. > - * > - * Each driver acts as a PCI driver and is represented by a generic > - * *event_driver* structure that holds: > - * > - * - An *rte_pci_driver* structure (which must be the first field). > - * > - * - The *eventdev_init* function invoked for each matching PCI device. > - * > - * - The size of the private data to allocate for each matching device. > - */ > -struct rte_eventdev_driver { > - struct rte_pci_driver pci_drv; /**< The PMD is also a PCI driver. */ > - unsigned int dev_private_size; /**< Size of device private data. */ > - > - eventdev_init_t eventdev_init; /**< Device init function. */ > - eventdev_uninit_t eventdev_uninit; /**< Device uninit function. */ > -}; > - > /** Global structure used for maintaining state of allocated event devices */ > struct rte_eventdev_global { > uint8_t nb_devs; /**< Number of devices found */ > @@ -579,18 +525,23 @@ rte_event_pmd_vdev_init(const char *name, size_t dev_private_size, > int > rte_event_pmd_vdev_uninit(const char *name); > > +typedef int (*eventdev_pmd_pci_callback_t)(struct rte_eventdev *dev); > + > /** > * Wrapper for use by pci drivers as a .probe function to attach to a event > * interface. > */ > int rte_event_pmd_pci_probe(struct rte_pci_driver *pci_drv, > - struct rte_pci_device *pci_dev); > + struct rte_pci_device *pci_dev, > + size_t private_data_size, > + eventdev_pmd_pci_callback_t devinit); > > /** > * Wrapper for use by pci drivers as a .remove function to detach a event > * interface. > */ > -int rte_event_pmd_pci_remove(struct rte_pci_device *pci_dev); > +int rte_event_pmd_pci_remove(struct rte_pci_device *pci_dev, > + eventdev_pmd_pci_callback_t devuninit); > > #ifdef __cplusplus > } > -- > 2.13.0 > -- Gaëtan Rivet 6WIND