From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: Re: [PATCH] config: disable enic driver on Power Date: Thu, 27 Nov 2014 12:44:01 +0100 Message-ID: References: <1417088558-13055-1-git-send-email-david.marchand@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: "dev-VfR2kkLFssw@public.gmane.org" To: Sujith Sankar Return-path: In-Reply-To: <1417088558-13055-1-git-send-email-david.marchand-pdR9zngts4EAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Hello Sujith, Please can you have a look at this in your enic driver ? I find it weird to use these types while we could use types such as uint8_t etc... Thanks. --=20 David Marchand On Thu, Nov 27, 2014 at 12:42 PM, David Marchand wrote: > enic driver is giving trouble because of non-standard types : > > CC enic_res.o > In file included from > lib/librte_pmd_enic/enic_res.c:36:0: > lib/librte_pmd_enic/enic_compat.h:92:1: error: unknown type name > =E2=80=98u_int32_t=E2=80=99 > static inline u_int32_t ioread32(volatile void *addr) > ^ > > Disable it on Power for now. > > Signed-off-by: David Marchand > --- > config/defconfig_ppc_64-power8-linuxapp-gcc | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/config/defconfig_ppc_64-power8-linuxapp-gcc > b/config/defconfig_ppc_64-power8-linuxapp-gcc > index cefb3be..48018c3 100644 > --- a/config/defconfig_ppc_64-power8-linuxapp-gcc > +++ b/config/defconfig_ppc_64-power8-linuxapp-gcc > @@ -52,6 +52,7 @@ CONFIG_RTE_LIBRTE_I40E_PMD=3Dn > CONFIG_RTE_LIBRTE_VIRTIO_PMD=3Dn > CONFIG_RTE_LIBRTE_VMXNET3_PMD=3Dn > CONFIG_RTE_LIBRTE_PMD_BOND=3Dn > +CONFIG_RTE_LIBRTE_ENIC_PMD=3Dn > > # This following libraries are not available on Power. So they're turned > off. > CONFIG_RTE_LIBRTE_LPM=3Dn > -- > 1.7.10.4 > >