From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 53C9B7EC4 for ; Fri, 7 Nov 2014 12:24:24 +0100 (CET) Received: from hmsreliant.think-freely.org ([2001:470:8:a08:7aac:c0ff:fec2:933b] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1XmhnY-0003J4-9S; Fri, 07 Nov 2014 06:33:55 -0500 Date: Fri, 7 Nov 2014 06:33:47 -0500 From: Neil Horman To: Sujith Sankar Message-ID: <20141107113347.GB25469@hmsreliant.think-freely.org> References: <1415390747-9532-1-git-send-email-ssujith@cisco.com> <1415390747-9532-2-git-send-email-ssujith@cisco.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1415390747-9532-2-git-send-email-ssujith@cisco.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-Spam-Score: -2.9 (--) X-Spam-Status: No Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 1/7] DPDK changes for accommodating ENIC PMD X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2014 11:24:24 -0000 On Sat, Nov 08, 2014 at 01:35:41AM +0530, Sujith Sankar wrote: > Signed-off-by: Sujith Sankar > --- > app/test-pmd/testpmd.c | 1 + > config/common_linuxapp | 6 ++++++ > lib/Makefile | 1 + > lib/librte_eal/linuxapp/eal/eal_pci_vfio.c | 7 +++++++ > lib/librte_eal/linuxapp/eal/include/eal_pci_init.h | 1 + > mk/rte.app.mk | 4 ++++ > 6 files changed, 20 insertions(+) > > diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c > index f76406f..4857d56 100644 > --- a/app/test-pmd/testpmd.c > +++ b/app/test-pmd/testpmd.c > @@ -1874,6 +1874,7 @@ main(int argc, char** argv) > "check that " > "CONFIG_RTE_LIBRTE_IGB_PMD=y and that " > "CONFIG_RTE_LIBRTE_EM_PMD=y and that " > + "CONFIG_RTE_LIBRTE_ENIC_PMD=y and that " > "CONFIG_RTE_LIBRTE_IXGBE_PMD=y in your " > "configuration file\n"); > > diff --git a/config/common_linuxapp b/config/common_linuxapp > index 57b61c9..6b5bac6 100644 > --- a/config/common_linuxapp > +++ b/config/common_linuxapp > @@ -210,6 +210,12 @@ CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM=4 > CONFIG_RTE_LIBRTE_I40E_ITR_INTERVAL=-1 > > # > +# Compile burst-oriented Cisco ENIC PMD driver > +# > +CONFIG_RTE_LIBRTE_ENIC_PMD=y > +CONFIG_RTE_LIBRTE_ENIC_PMD_DEBUG_TRACE=n > + > +# > # Compile burst-oriented VIRTIO PMD driver > # > CONFIG_RTE_LIBRTE_VIRTIO_PMD=y > diff --git a/lib/Makefile b/lib/Makefile > index e3237ff..1911790 100644 > --- a/lib/Makefile > +++ b/lib/Makefile > @@ -43,6 +43,7 @@ DIRS-$(CONFIG_RTE_LIBRTE_CMDLINE) += librte_cmdline > DIRS-$(CONFIG_RTE_LIBRTE_ETHER) += librte_ether > DIRS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += librte_pmd_e1000 > DIRS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += librte_pmd_ixgbe > +DIRS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += librte_pmd_enic Don't include this change until last in the series, as you haven't patched in this directory yet. Otherwise you'll get a failed to build problem.