From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 002C38E8A for ; Wed, 4 Nov 2015 09:14:56 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP; 04 Nov 2015 00:14:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,242,1444719600"; d="scan'208";a="826608985" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga001.fm.intel.com with ESMTP; 04 Nov 2015 00:14:55 -0800 Received: from fmsmsx118.amr.corp.intel.com (10.18.116.18) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 4 Nov 2015 00:14:55 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by fmsmsx118.amr.corp.intel.com (10.18.116.18) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 4 Nov 2015 00:14:54 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.57]) by shsmsx102.ccr.corp.intel.com ([169.254.2.199]) with mapi id 14.03.0248.002; Wed, 4 Nov 2015 16:14:53 +0800 From: "Qiu, Michael" To: Chao Zhu , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH] PPC64: turn off fm10k driver compilation on IBM POWER Thread-Index: AQHRFsgIggKtol1YHk6S0r69ZzT86w== Date: Wed, 4 Nov 2015 08:14:52 +0000 Message-ID: <533710CFB86FA344BFBF2D6802E6028621B65AF1@SHSMSX101.ccr.corp.intel.com> References: <1446617726-31558-1-git-send-email-chaozhu@linux.vnet.ibm.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] PPC64: turn off fm10k driver compilation on IBM POWER 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: Wed, 04 Nov 2015 08:14:57 -0000 On 2015/11/4 14:14, Chao Zhu wrote:=0A= > The fm10k vector driver is specific for x86 platform which can't compile= =0A= > on IBM POWER for lacking of tmmintrin.h header file. This patch turns=0A= > off fm10k driver compilation on IBM POWER to prevent compile issue.=0A= >=0A= > Signed-off-by: Chao Zhu =0A= =0A= Acked-by: Michael Qiu =0A= > ---=0A= > config/defconfig_ppc_64-power8-linuxapp-gcc | 1 +=0A= > 1 files changed, 1 insertions(+), 0 deletions(-)=0A= >=0A= > diff --git a/config/defconfig_ppc_64-power8-linuxapp-gcc b/config/defconf= ig_ppc_64-power8-linuxapp-gcc=0A= > index f1af518..03760c4 100644=0A= > --- a/config/defconfig_ppc_64-power8-linuxapp-gcc=0A= > +++ b/config/defconfig_ppc_64-power8-linuxapp-gcc=0A= > @@ -50,6 +50,7 @@ CONFIG_RTE_LIBRTE_VIRTIO_PMD=3Dn=0A= > CONFIG_RTE_LIBRTE_VMXNET3_PMD=3Dn=0A= > CONFIG_RTE_LIBRTE_PMD_BOND=3Dn=0A= > CONFIG_RTE_LIBRTE_ENIC_PMD=3Dn=0A= > +CONFIG_RTE_LIBRTE_FM10K_PMD=3Dn=0A= > =0A= > # This following libraries are not available on Power. So they're turned= off.=0A= > CONFIG_RTE_LIBRTE_LPM=3Dn=0A= =0A=