From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH v3 4/8] eal: Consolidate rte_eal_pci_probe/close_one_driver() of linuxapp and bsdapp Date: Mon, 29 Jun 2015 16:28:37 +0100 Message-ID: <20150629152837.GA3260@bricha3-MOBL3> References: <1432016513-8456-5-git-send-email-mukawa@igel.co.jp> <1435546610-4533-1-git-send-email-mukawa@igel.co.jp> <1435546610-4533-5-git-send-email-mukawa@igel.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org To: Tetsuya Mukawa Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 0F430C484 for ; Mon, 29 Jun 2015 17:28:41 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1435546610-4533-5-git-send-email-mukawa@igel.co.jp> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Jun 29, 2015 at 11:56:46AM +0900, Tetsuya Mukawa wrote: > From: "Tetsuya.Mukawa" > > This patch consolidates below functions, and implements these in common > eal code. > - rte_eal_pci_probe_one_driver() > - rte_eal_pci_close_one_driver() > > Because pci_map_device() is only implemented in linuxapp, the patch > implements it in bsdapp too. This implemented function will be merged to > linuxapp one with later patch. > > Signed-off-by: Tetsuya Mukawa > --- > lib/librte_eal/bsdapp/eal/eal_pci.c | 74 ++--------------- > lib/librte_eal/common/eal_common_pci.c | 129 ++++++++++++++++++++++++++++ > lib/librte_eal/common/eal_private.h | 21 ++--- > lib/librte_eal/linuxapp/eal/eal_pci.c | 148 ++------------------------------- > 4 files changed, 153 insertions(+), 219 deletions(-) > > diff --git a/lib/librte_eal/bsdapp/eal/eal_pci.c b/lib/librte_eal/bsdapp/eal/eal_pci.c > index c7017eb..2a623e3 100644 > --- a/lib/librte_eal/bsdapp/eal/eal_pci.c > +++ b/lib/librte_eal/bsdapp/eal/eal_pci.c > @@ -88,7 +88,7 @@ static struct rte_tailq_elem rte_uio_tailq = { > EAL_REGISTER_TAILQ(rte_uio_tailq) > > /* unbind kernel driver for this device */ > -static int > +int > pci_unbind_kernel_driver(struct rte_pci_device *dev __rte_unused) > { > RTE_LOG(ERR, EAL, "RTE_PCI_DRV_FORCE_UNBIND flag is not implemented " > @@ -430,6 +430,13 @@ skipdev: > return 0; > } > > +/* Map pci device */ > +int > +pci_map_device(struct rte_pci_device *dev) > +{ > + return pci_uio_map_resource(dev); > +} > + These lines are added here, but removed again in the next patch in the series. Though not wrong, per-se, it just seems untidy. Perhaps the patchset order needs to be changed somewhat? /Bruce