From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E9013A04F9 for ; Thu, 9 Jan 2020 14:34:49 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C4DD41DD83; Thu, 9 Jan 2020 14:34:49 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id 3FBF11DD80 for ; Thu, 9 Jan 2020 14:34:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578576887; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=uz8FkDRl9V1WhcJMCRvS1BZPQanQFd0khamiDswnEhA=; b=E6qxgemZy5ZTC0RUaDT5QBYW/D6Ia8nxv0mQXJ2xoukwhR4/jke6RIPnwesIWXSO+hPNpG 5+GfsXeK0jKv6gB+3006wKEKOQJpb3SKhA7+pzthWrKwEG3XKGxaOgDEtaxnJYMsmpRFPx NcuA6jrSuvYyEeABbrT8gcDWMrL4RvQ= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-149-7PZD4mv7Or2O1RtaZ09pQg-1; Thu, 09 Jan 2020 08:34:45 -0500 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 9F431800D4C for ; Thu, 9 Jan 2020 13:34:44 +0000 (UTC) Received: from rh.redhat.com (unknown [10.36.118.12]) by smtp.corp.redhat.com (Postfix) with ESMTP id C8FA37C38D; Thu, 9 Jan 2020 13:34:43 +0000 (UTC) From: Kevin Traynor To: stable@dpdk.org Cc: ktraynor@redhat.com Date: Thu, 9 Jan 2020 13:34:26 +0000 Message-Id: <20200109133433.12494-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-MC-Unique: 7PZD4mv7Or2O1RtaZ09pQg-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-stable] [18.11 0/7] Build fixes for 18.11 branch X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Fixes for various build configurations. Ali Alnubani (1): net/mlx: fix build with clang 9 ^ what it says Kevin Traynor (2): kni: fix ethtool build for gcc 9 pmdinfogen: fix freebsd build ^ 18.11 branch specific Stephen Hemminger (3): eal: drop unused macros for primary process check eventdev: use same log macro for all unsupported calls eal: remove legacy PMD log macro ^ Removes unused code that was causing build failure with clang 9 Thomas Monjalon (1): net/mlx: allow build only on Linux ^ As libmnl requirement was removed, mlx4 build was being attempted on Free= BSD with meson Ali Alnubani (1): net/mlx: fix build with clang 9 Kevin Traynor (2): kni: fix ethtool build for gcc 9 pmdinfogen: fix freebsd build Stephen Hemminger (3): eal: drop unused macros for primary process check eventdev: use same log macro for all unsupported calls eal: remove legacy PMD log macro Thomas Monjalon (1): net/mlx: allow build only on Linux buildtools/pmdinfogen/meson.build | 5 ++ drivers/net/mlx4/meson.build | 11 +++- drivers/net/mlx4/mlx4_utils.h | 5 +- drivers/net/mlx5/meson.build | 10 +++- drivers/net/mlx5/mlx5_utils.h | 5 +- kernel/linux/kni/ethtool/igb/e1000_82575.c | 3 +- kernel/linux/kni/ethtool/igb/e1000_mbx.c | 1 + kernel/linux/kni/ethtool/igb/e1000_phy.c | 1 + kernel/linux/kni/ethtool/igb/igb_ethtool.c | 4 ++ kernel/linux/kni/ethtool/igb/igb_main.c | 4 ++ kernel/linux/kni/ethtool/igb/igb_param.c | 1 + kernel/linux/kni/ethtool/ixgbe/ixgbe_82599.c | 2 + kernel/linux/kni/ethtool/ixgbe/ixgbe_common.c | 1 + .../linux/kni/ethtool/ixgbe/ixgbe_ethtool.c | 1 + kernel/linux/kni/ethtool/ixgbe/ixgbe_main.c | 4 ++ lib/librte_eal/common/include/rte_dev.h | 56 +------------------ lib/librte_eventdev/rte_eventdev.c | 4 +- 17 files changed, 54 insertions(+), 64 deletions(-) --=20 2.21.1