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 579751B494 for ; Thu, 22 Nov 2018 17:52:16 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id BCE28C0587DF; Thu, 22 Nov 2018 16:52:15 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id 596B666D44; Thu, 22 Nov 2018 16:52:14 +0000 (UTC) From: Kevin Traynor To: Ferruh Yigit Cc: Luca Boccassi , dpdk stable Date: Thu, 22 Nov 2018 16:49:21 +0000 Message-Id: <20181122164957.13003-29-ktraynor@redhat.com> In-Reply-To: <20181122164957.13003-1-ktraynor@redhat.com> References: <20181122164957.13003-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Thu, 22 Nov 2018 16:52:15 +0000 (UTC) Subject: [dpdk-stable] patch 'ring: add library version to meson build' has been queued to stable release 18.08.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: Thu, 22 Nov 2018 16:52:16 -0000 Hi, FYI, your patch has been queued to stable release 18.08.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 11/28/18. 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. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Kevin Traynor --- >>From 06edceda1fde2e9ef31d2251c500b4d355c0c8cd Mon Sep 17 00:00:00 2001 From: Ferruh Yigit Date: Mon, 15 Oct 2018 15:50:56 +0100 Subject: [PATCH] ring: add library version to meson build [ upstream commit 73aa5c1332c6fff67ba8e26608595ab2f1fa3cfc ] Fixes: a3d6026711d0 ("ring: relax alignment constraint on ring structure") Signed-off-by: Ferruh Yigit Acked-by: Luca Boccassi --- lib/librte_ring/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_ring/meson.build b/lib/librte_ring/meson.build index ca8a435e9..ab8b0b469 100644 --- a/lib/librte_ring/meson.build +++ b/lib/librte_ring/meson.build @@ -2,4 +2,5 @@ # Copyright(c) 2017 Intel Corporation +version = 2 sources = files('rte_ring.c') headers = files('rte_ring.h', -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-22 16:47:33.013825802 +0000 +++ 0029-ring-add-library-version-to-meson-build.patch 2018-11-22 16:47:32.000000000 +0000 @@ -1,10 +1,11 @@ -From 73aa5c1332c6fff67ba8e26608595ab2f1fa3cfc Mon Sep 17 00:00:00 2001 +From 06edceda1fde2e9ef31d2251c500b4d355c0c8cd Mon Sep 17 00:00:00 2001 From: Ferruh Yigit Date: Mon, 15 Oct 2018 15:50:56 +0100 Subject: [PATCH] ring: add library version to meson build +[ upstream commit 73aa5c1332c6fff67ba8e26608595ab2f1fa3cfc ] + Fixes: a3d6026711d0 ("ring: relax alignment constraint on ring structure") -Cc: stable@dpdk.org Signed-off-by: Ferruh Yigit Acked-by: Luca Boccassi