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 5F2281B49D for ; Thu, 22 Nov 2018 17:51:25 +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 C5C987AE80; Thu, 22 Nov 2018 16:51:24 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id A7D531693A; Thu, 22 Nov 2018 16:51:23 +0000 (UTC) From: Kevin Traynor To: Fan Zhang Cc: Ferruh Yigit , dpdk stable Date: Thu, 22 Nov 2018 16:48:57 +0000 Message-Id: <20181122164957.13003-5-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.25]); Thu, 22 Nov 2018 16:51:24 +0000 (UTC) Subject: [dpdk-stable] patch 'cryptodev: fix library version' 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:51:25 -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 6e5f35dde89ec9b8c00ebdf4ef6d47913437bfae Mon Sep 17 00:00:00 2001 From: Fan Zhang Date: Mon, 15 Oct 2018 12:28:16 +0100 Subject: [PATCH] cryptodev: fix library version [ upstream commit 3f1d382ca3b73623dfa5c3d44bd4251b67d92a91 ] This patch fixes the cryptodev library version number that was missed updating in DPDK 18.08. Fixes: a4493be5bdfa ("cryptodev: replace bus specific struct with generic dev") Signed-off-by: Fan Zhang Reviewed-by: Ferruh Yigit --- lib/librte_cryptodev/Makefile | 2 +- lib/librte_cryptodev/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_cryptodev/Makefile b/lib/librte_cryptodev/Makefile index c11488877..a8f94c097 100644 --- a/lib/librte_cryptodev/Makefile +++ b/lib/librte_cryptodev/Makefile @@ -8,5 +8,5 @@ LIB = librte_cryptodev.a # library version -LIBABIVER := 4 +LIBABIVER := 5 # build flags diff --git a/lib/librte_cryptodev/meson.build b/lib/librte_cryptodev/meson.build index 295f509ec..990dd3d44 100644 --- a/lib/librte_cryptodev/meson.build +++ b/lib/librte_cryptodev/meson.build @@ -2,5 +2,5 @@ # Copyright(c) 2017 Intel Corporation -version = 4 +version = 5 sources = files('rte_cryptodev.c', 'rte_cryptodev_pmd.c') headers = files('rte_cryptodev.h', -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-22 16:47:32.411229457 +0000 +++ 0005-cryptodev-fix-library-version.patch 2018-11-22 16:47:32.000000000 +0000 @@ -1,13 +1,14 @@ -From 3f1d382ca3b73623dfa5c3d44bd4251b67d92a91 Mon Sep 17 00:00:00 2001 +From 6e5f35dde89ec9b8c00ebdf4ef6d47913437bfae Mon Sep 17 00:00:00 2001 From: Fan Zhang Date: Mon, 15 Oct 2018 12:28:16 +0100 Subject: [PATCH] cryptodev: fix library version +[ upstream commit 3f1d382ca3b73623dfa5c3d44bd4251b67d92a91 ] + This patch fixes the cryptodev library version number that was missed updating in DPDK 18.08. Fixes: a4493be5bdfa ("cryptodev: replace bus specific struct with generic dev") -Cc: stable@dpdk.org Signed-off-by: Fan Zhang Reviewed-by: Ferruh Yigit