From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f169.google.com (mail-we0-f169.google.com [74.125.82.169]) by dpdk.org (Postfix) with ESMTP id DFBAD5930 for ; Thu, 24 Jul 2014 23:49:24 +0200 (CEST) Received: by mail-we0-f169.google.com with SMTP id u56so3405752wes.28 for ; Thu, 24 Jul 2014 14:50:54 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=Lz/RKhIZ8HkZj1P9OGeDHvgbAbz5693uHU4Mfu7OZI8=; b=F/S/LBxdElziLkDhYgEIXVvP077XBORf0jtR/intE3cZMCiReaCs8y1kQKbV4VFDZ+ BXiPLjZ2vAtxvCNpWgrz+aMhEzj5o963tR4f+2Ek7Z4GrtUp+RKOmTIWX8NcPhcK8Uvf +8fsoankUs30h4+4WOPARy+oqH2cWoWKEDS7Xq9bR1XH9CALpBsUjvGgXYwc8viJ+9YT lEDbAu92TLrRmzZkYe0MVGcT9NDkRkzVM3EKUCFksCfKllyllPWgkatu0xL6OLvUUJ3h 8C13sxZXAf0xBi04do5fHKWR4Pb3+KsaOAligaFYb4v6L1xkL+jeM/G5PTTWMtbUdm22 F0xw== X-Gm-Message-State: ALoCoQmSPrgtkPAu5vN+rWiypuEksDazCtDt+zoA9VSuWJFB+D4kIYtKXEX6NiJ+r1riP8vuzIfb X-Received: by 10.180.83.8 with SMTP id m8mr161959wiy.8.1406238654543; Thu, 24 Jul 2014 14:50:54 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id lk7sm19312969wjb.24.2014.07.24.14.50.52 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 24 Jul 2014 14:50:53 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Thu, 24 Jul 2014 23:50:43 +0200 Message-ID: <63943632.YQD76xZEni@xps13> Organization: 6WIND User-Agent: KMail/4.13.2 (Linux/3.15.5-2-ARCH; KDE/4.13.2; x86_64; ; ) In-Reply-To: <5883538.6a46FUcxyX@xps13> References: <2795655.Wj4j2zIbVg@xps13> <1405944234-50272-1-git-send-email-e_zhumabekov@sts.kz> <5883538.6a46FUcxyX@xps13> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Subject: Re: [dpdk-dev] [igb_uio PATCH 0/3] igb_uio: fixed typos and pci lock/unlock calls 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: Thu, 24 Jul 2014 21:49:25 -0000 2014-07-22 15:07, Thomas Monjalon: > The compilation with old kernels should be fixed now. > If some distributions have backported the new PCI config locking func= tions, > the compilation may fail. Please report such errors. Compilation with RHEL6 is broken because of some backported functions, some unknown MSIX values and some MSI functions missing. include/linux/pci.h:1572: note: previous declaration of =E2=80=98pci_nu= m_vf=E2=80=99 was here include/linux/pci.h:868: note: previous declaration of =E2=80=98pci_int= x_mask_supported=E2=80=99 was here include/linux/pci.h:869: note: previous declaration of =E2=80=98pci_che= ck_and_mask_intx=E2=80=99 was here igb_uio.c:294: error: =E2=80=98PCI_MSIX_ENTRY_SIZE=E2=80=99 undeclared = (first use in this function) igb_uio.c:295: error: =E2=80=98PCI_MSIX_ENTRY_VECTOR_CTRL=E2=80=99 unde= clared (first use in this function) igb_uio.c:298: error: =E2=80=98PCI_MSIX_ENTRY_CTRL_MASKBIT=E2=80=99 und= eclared (first use in this function) igb_uio.c:312: error: implicit declaration of function =E2=80=98irq_dat= a_get_msi=E2=80=99 igb_uio.c:350: error: implicit declaration of function =E2=80=98irq_get= _irq_data=E2=80=99 If someone has time to fix it, patch is welcome. Thanks --=20 Thomas