From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id CED807CB6 for ; Thu, 14 Sep 2017 10:53:58 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga105.fm.intel.com with ESMTP; 14 Sep 2017 01:53:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,391,1500966000"; d="scan'208";a="135244481" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.57]) ([10.237.220.57]) by orsmga002.jf.intel.com with ESMTP; 14 Sep 2017 01:53:56 -0700 To: Ravi Kumar , dev@dpdk.org References: <1505324838-25734-1-git-send-email-ravi1.kumar@amd.com> Cc: Thomas Monjalon From: Ferruh Yigit Message-ID: Date: Thu, 14 Sep 2017 09:53:56 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: <1505324838-25734-1-git-send-email-ravi1.kumar@amd.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH 1/4] Add AMD XGBE Ethernet config support in DPDK 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: Thu, 14 Sep 2017 08:54:00 -0000 On 9/13/2017 6:47 PM, Ravi Kumar wrote: > Signed-off-by: Ravi Kumar > --- > config/common_base | 6 ++++++ > mk/rte.app.mk | 1 + > 2 files changed, 7 insertions(+) > > diff --git a/config/common_base b/config/common_base > index 5e97a08..fab46b5 100644 > --- a/config/common_base > +++ b/config/common_base > @@ -405,6 +405,12 @@ CONFIG_RTE_LIBRTE_AVP_DEBUG_DRIVER=y > CONFIG_RTE_LIBRTE_AVP_DEBUG_BUFFERS=n > > # > +# Compile AMD PMD > +# > +CONFIG_RTE_LIBRTE_AXGBE_PMD=n Hi Ravi, This is a new networking driver from AMD. Great to see new vendors in DPDK, welcome. Patch 2/4 seems missing in the mail list, it may be stuck because of the size limit if it is a big patch, which may mean it needs to be split into multiple patches :) Thanks, ferruh > +CONFIG_RTE_LIBRTE_AXGBE_DEBUG_INIT=n > + > +# > # Compile the TAP PMD > # It is enabled by default for Linux only. > # > diff --git a/mk/rte.app.mk b/mk/rte.app.mk > index c25fdd9..478ece1 100644 > --- a/mk/rte.app.mk > +++ b/mk/rte.app.mk > @@ -112,6 +112,7 @@ _LDLIBS-$(CONFIG_RTE_DRIVER_MEMPOOL_STACK) += -lrte_mempool_stack > _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AF_PACKET) += -lrte_pmd_af_packet > _LDLIBS-$(CONFIG_RTE_LIBRTE_ARK_PMD) += -lrte_pmd_ark > _LDLIBS-$(CONFIG_RTE_LIBRTE_AVP_PMD) += -lrte_pmd_avp > +_LDLIBS-$(CONFIG_RTE_LIBRTE_AXGBE_PMD) += -lrte_pmd_axgbe > _LDLIBS-$(CONFIG_RTE_LIBRTE_BNX2X_PMD) += -lrte_pmd_bnx2x -lz > _LDLIBS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += -lrte_pmd_bnxt > _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_BOND) += -lrte_pmd_bond >