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 EAEDAA0535; Wed, 5 Feb 2020 20:53:05 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CC6751C2F0; Wed, 5 Feb 2020 20:53:05 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 65C0E1C2E1; Wed, 5 Feb 2020 20:53:04 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Feb 2020 11:53:03 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,406,1574150400"; d="scan'208";a="225058763" Received: from orsmsx104.amr.corp.intel.com ([10.22.225.131]) by fmsmga007.fm.intel.com with ESMTP; 05 Feb 2020 11:53:03 -0800 Received: from orsmsx158.amr.corp.intel.com (10.22.240.20) by ORSMSX104.amr.corp.intel.com (10.22.225.131) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 5 Feb 2020 11:53:02 -0800 Received: from orsmsx104.amr.corp.intel.com ([169.254.4.176]) by ORSMSX158.amr.corp.intel.com ([169.254.10.113]) with mapi id 14.03.0439.000; Wed, 5 Feb 2020 11:53:02 -0800 From: "Wang, Yipeng1" To: David Marchand , "dev@dpdk.org" CC: "thomas@monjalon.net" , "Richardson, Bruce" , "Laatz, Kevin" , "aconole@redhat.com" , "nhorman@tuxdriver.com" , "akhil.goyal@nxp.com" , "anoobj@marvell.com" , "bluca@debian.org" , "Trahe, Fiona" , "Yigit, Ferruh" , "stable@dpdk.org" , "Gobriel, Sameh" , "Van Haaren, Harry" , Luca Boccassi , "Wiles, Keith" Thread-Topic: [PATCH v4 1/3] hash: fix meson headers packaging Thread-Index: AQHV2g0Cuvc8ig8ftEKNhxcyz6BSLKgNB29w Date: Wed, 5 Feb 2020 19:53:01 +0000 Message-ID: References: <20191220152058.10739-1-david.marchand@redhat.com> <20200202210835.29791-1-david.marchand@redhat.com> <20200202210835.29791-2-david.marchand@redhat.com> In-Reply-To: <20200202210835.29791-2-david.marchand@redhat.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.22.254.140] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 1/3] hash: fix meson headers packaging X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" >-----Original Message----- >From: David Marchand [mailto:david.marchand@redhat.com] >Sent: Sunday, February 2, 2020 1:09 PM >To: dev@dpdk.org >Cc: thomas@monjalon.net; Richardson, Bruce ; L= aatz, Kevin ; >aconole@redhat.com; nhorman@tuxdriver.com; akhil.goyal@nxp.com; anoobj@mar= vell.com; bluca@debian.org; Trahe, Fiona >; Yigit, Ferruh ; stable@dp= dk.org; Wang, Yipeng1 ; >Gobriel, Sameh ; Van Haaren, Harry ; Luca Boccassi >; Wiles, Keith >Subject: [PATCH v4 1/3] hash: fix meson headers packaging > >Those headers are internal and should not be distributed. > >Fixes: 5b9656b157d3 ("lib: build with meson") >Cc: stable@dpdk.org > >Signed-off-by: David Marchand >Acked-by: Luca Boccassi >--- > lib/librte_hash/meson.build | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) > >diff --git a/lib/librte_hash/meson.build b/lib/librte_hash/meson.build >index 5d02b3084..bce11ad9e 100644 >--- a/lib/librte_hash/meson.build >+++ b/lib/librte_hash/meson.build >@@ -1,10 +1,7 @@ > # SPDX-License-Identifier: BSD-3-Clause > # Copyright(c) 2017 Intel Corporation > >-headers =3D files('rte_cmp_arm64.h', >- 'rte_cmp_x86.h', >- 'rte_crc_arm64.h', >- 'rte_cuckoo_hash.h', >+headers =3D files('rte_crc_arm64.h', > 'rte_fbk_hash.h', > 'rte_hash_crc.h', > 'rte_hash.h', >-- >2.23.0 [Wang, Yipeng] Acked-by: Yipeng Wang