From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH] igb_uio: fix build with backported kernel Date: Fri, 17 Jun 2016 10:15:43 +0100 Message-ID: <5763BFBF.60509@intel.com> References: <9B0331B6EBBD0E4684FBFAEDA55776F92CD5CBC7@HASMSX110.ger.corp.intel.com> <1466006262-30228-1-git-send-email-ferruh.yigit@intel.com> <57617B63.4040602@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: dev , Rami Rosen To: =?UTF-8?B?TWFydGlueCAtIOOCuOOCp+ODvOODoOOCug==?= Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id D81F7CBFE for ; Fri, 17 Jun 2016 11:15:50 +0200 (CEST) In-Reply-To: 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 6/16/2016 4:45 PM, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=E3=82= =BA wrote: > On 15 June 2016 at 11:59, Ferruh Yigit > wrote: >=20 > On 6/15/2016 4:57 PM, Ferruh Yigit wrote: > > Following compile error observed with CentOS 6.8, which uses kern= el > > kernel-devel-2.6.32-642.el6.x86_64: > > > > CC eal_thread.o > > .../build/lib/librte_eal/linuxapp/igb_uio/igb_uio.c: > > In function 'igbuio_msix_mask_irq': > > .../build/lib/librte_eal/linuxapp/igb_uio/igb_uio.c:157: > > error: 'PCI_MSIX_ENTRY_CTRL_MASKBIT' undeclared (first use in thi= s > > function) > > > > Reported-by: Thiago > > > Signed-off-by: Ferruh Yigit > >=20 > Hi Thiago, >=20 > Can you please test this patch? >=20 > Thanks, > ferruh >=20 >=20 > Hi Ferruh, >=20 > That patch applied and worked (kind of): >=20 > --- > [root@centos6-1 dpdk-16.04]# patch -p1 < ../dpdk-centos6.patch=20 > patching file lib/librte_eal/linuxapp/igb_uio/compat.h > Hunk #1 succeeded at 24 with fuzz 2. > --- >=20 > It passed that broken step, however, it is failing in a different part > of build process now, as follows: >=20 > --- > [root@centos6-1 ~]# time rpmbuild --ba /root/rpmbuild/SPECS/dpdk.spec=20 > ....... > ....... > LD librte_eal.so.2 > INSTALL-LIB librte_eal.so.2 > =3D=3D Build lib/librte_eal/linuxapp/kni > LD =20 > /root/rpmbuild/BUILD/dpdk-16.04/x86_64-default-linuxapp-gcc/build/lib/= librte_eal/linuxapp/kni/built-in.o > CC [M] > /root/rpmbuild/BUILD/dpdk-16.04/x86_64-default-linuxapp-gcc/build/lib/= librte_eal/linuxapp/kni/ixgbe_main.o > CC [M] > /root/rpmbuild/BUILD/dpdk-16.04/x86_64-default-linuxapp-gcc/build/lib/= librte_eal/linuxapp/kni/ixgbe_api.o > In file included from > /root/rpmbuild/BUILD/dpdk-16.04/lib/librte_eal/linuxapp/kni/ethtool/ixg= be/ixgbe_osdep.h:41, > from > /root/rpmbuild/BUILD/dpdk-16.04/lib/librte_eal/linuxapp/kni/ethtool/ixg= be/ixgbe_type.h:31, > from > /root/rpmbuild/BUILD/dpdk-16.04/lib/librte_eal/linuxapp/kni/ethtool/ixg= be/ixgbe_api.h:31, > from > /root/rpmbuild/BUILD/dpdk-16.04/x86_64-default-linuxapp-gcc/build/lib/l= ibrte_eal/linuxapp/kni/ixgbe_api.c:28: > /root/rpmbuild/BUILD/dpdk-16.04/lib/librte_eal/linuxapp/kni/ethtool/ixg= be/kcompat.h: > In function '__kc_vlan_get_protocol': > /root/rpmbuild/BUILD/dpdk-16.04/lib/librte_eal/linuxapp/kni/ethtool/ixg= be/kcompat.h:2836: > error: implicit declaration of function 'vlan_tx_tag_present' Because skb_vlan_tag_present renamed in Linux 3.19 (commit: df8a39d) and this commit backported in this kernel. This error can be also fixed, but another compile error pops up. This is hard to keep up, because kernel version is old (2.6.32) but backported latest commits. We are not able to rely on kernel version checks or define checks. If you don't need KNI you can either: 1- Disable it from configuration file 2- Compile kernel modules against newer kernel version using RTE_KERNELDIR, like: "make RTE_KERNELDIR=3D/tmp/latest_linux_version" As far as I can see you are using spec file to compile, is this spec file distributed with DPDK? If so, perhaps you can share your updates to spec file? >=20 > Might be a totally different problem now, I don't know... :-) >=20 > Best, > Thiago