From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 3FD5D1B489 for ; Fri, 4 Jan 2019 14:25:38 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8B8F287632; Fri, 4 Jan 2019 13:25:37 +0000 (UTC) Received: from ktraynor.remote.csb (ovpn-117-13.ams2.redhat.com [10.36.117.13]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5BEA85C238; Fri, 4 Jan 2019 13:25:35 +0000 (UTC) From: Kevin Traynor To: Gavin Hu Cc: Ruifeng Wang , Honnappa Nagarahalli , Bruce Richardson , dpdk stable Date: Fri, 4 Jan 2019 13:23:43 +0000 Message-Id: <20190104132455.15170-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Fri, 04 Jan 2019 13:25:37 +0000 (UTC) Subject: [dpdk-stable] patch 'config: enable C11 memory model for armv8 with meson' has been queued to LTS release 18.11.1 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: , X-List-Received-Date: Fri, 04 Jan 2019 13:25:38 -0000 Hi, FYI, your patch has been queued to LTS release 18.11.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 01/11/19. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Thanks. Kevin Traynor --- >>From c50ba18e9550ae951a2251e5e19975dc649f7ead Mon Sep 17 00:00:00 2001 From: Gavin Hu Date: Tue, 11 Dec 2018 11:55:50 +0800 Subject: [PATCH] config: enable C11 memory model for armv8 with meson [ upstream commit 592a13c9e6739b07e6657def5df5cd1e7abe2423 ] This patch makes the configuration based on makefile and the configuration based on meson to be the same. Fixes: c6e536e38437 ("build: add more implementers IDs and PNs for ARM") Signed-off-by: Gavin Hu Reviewed-by: Ruifeng Wang Reviewed-by: Honnappa Nagarahalli Acked-by: Bruce Richardson --- config/arm/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/arm/meson.build b/config/arm/meson.build index 3f917250d..dae55d6b2 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -48,4 +48,5 @@ flags_generic = [ ['RTE_MACHINE', '"armv8a"'], ['RTE_MAX_LCORE', 256], + ['RTE_USE_C11_MEM_MODEL', true], ['RTE_CACHE_LINE_SIZE', 128]] flags_cavium = [ @@ -58,4 +59,5 @@ flags_cavium = [ flags_dpaa = [ ['RTE_MACHINE', '"dpaa"'], + ['RTE_USE_C11_MEM_MODEL', true], ['RTE_CACHE_LINE_SIZE', 64], ['RTE_MAX_NUMA_NODES', 1], @@ -63,4 +65,5 @@ flags_dpaa = [ flags_dpaa2 = [ ['RTE_MACHINE', '"dpaa2"'], + ['RTE_USE_C11_MEM_MODEL', true], ['RTE_CACHE_LINE_SIZE', 64], ['RTE_MAX_NUMA_NODES', 1], -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2019-01-04 13:23:07.490842674 +0000 +++ 0001-config-enable-C11-memory-model-for-armv8-with-meson.patch 2019-01-04 13:23:07.000000000 +0000 @@ -1,13 +1,14 @@ -From 592a13c9e6739b07e6657def5df5cd1e7abe2423 Mon Sep 17 00:00:00 2001 +From c50ba18e9550ae951a2251e5e19975dc649f7ead Mon Sep 17 00:00:00 2001 From: Gavin Hu Date: Tue, 11 Dec 2018 11:55:50 +0800 Subject: [PATCH] config: enable C11 memory model for armv8 with meson +[ upstream commit 592a13c9e6739b07e6657def5df5cd1e7abe2423 ] + This patch makes the configuration based on makefile and the configuration based on meson to be the same. Fixes: c6e536e38437 ("build: add more implementers IDs and PNs for ARM") -Cc: stable@dpdk.org Signed-off-by: Gavin Hu Reviewed-by: Ruifeng Wang