From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Dichtel Subject: Re: [PATCH] kni: fix ethtool build with kernel 4.11 Date: Wed, 3 May 2017 19:06:46 +0200 Message-ID: <48ab36d4-db15-4a46-dc8e-03954ed55452@6wind.com> References: <20170503160016.31375-1-ferruh.yigit@intel.com> Reply-To: nicolas.dichtel@6wind.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: dev@dpdk.org To: Ferruh Yigit , Thomas Monjalon Return-path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id 0995E330D for ; Wed, 3 May 2017 19:06:41 +0200 (CEST) Received: by mail-wm0-f49.google.com with SMTP id u65so153741252wmu.1 for ; Wed, 03 May 2017 10:06:41 -0700 (PDT) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Le 03/05/2017 à 18:43, Ferruh Yigit a écrit : > On 5/3/2017 5:39 PM, Nicolas Dichtel wrote: >> Le 03/05/2017 à 18:00, Ferruh Yigit a écrit : >>> build error: >>> .../build/build/lib/librte_eal/linuxapp/kni/igb_main.c:1034:10: >>> error: implicit declaration of function ‘pci_enable_msix’ >>> [-Werror=implicit-function-declaration] >>> err = pci_enable_msix(pdev, >>> ^~~~~~~~~~~~~~~ >>> >>> This build error observed when CONFIG_RTE_KNI_KMOD_ETHTOOL config option >>> enabled. >>> >>> Following Linux commit removes the pci_enable_msix() >>> Linux: 4244de1c64de ("PCI: remove pci_enable_msix") >>> >>> Switch to pci_enable_msix_range() for kernel > 4.8 since current Linux >>> igb driver uses this function. >> When looking at the kernel patches, it seems that the way to go is to use >> pci_alloc_irq_vectors(), but it needs a bit more work. > > I remember this from your igb_uio fix, but latest igb kernel driver uses > pci_enable_msix_range(), I found it easy and safe to replicate it. Ok. > > We can update it when kernel igb driver updates the code, unless you > have a strong opinion to switch pci_alloc_irq_vectors() in advance? No, I don't mind. Acked-by: Nicolas Dichtel Regards, Nicolas