lib/cryptodev: fix library version

Message ID 20181015112816.57011-1-roy.fan.zhang@intel.com (mailing list archive)
State Accepted, archived
Delegated to: akhil goyal
Headers
Series lib/cryptodev: fix library version |

Checks

Context Check Description
ci/Intel-compilation success Compilation OK
ci/checkpatch success coding style OK

Commit Message

Fan Zhang Oct. 15, 2018, 11:28 a.m. UTC
  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 <roy.fan.zhang@intel.com>
---
 lib/librte_cryptodev/Makefile    | 2 +-
 lib/librte_cryptodev/meson.build | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
  

Comments

Ferruh Yigit Oct. 15, 2018, 1:18 p.m. UTC | #1
On 10/15/2018 12:28 PM, stable-bounces@dpdk.org wrote:
> 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 <roy.fan.zhang@intel.com>

Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

lib/ can be dropped from title:
cryptodev: fix library version
  
Akhil Goyal Oct. 16, 2018, 2:36 p.m. UTC | #2
On 10/15/2018 6:48 PM, Ferruh Yigit wrote:
> On 10/15/2018 12:28 PM, stable-bounces@dpdk.org wrote:
>> 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 <roy.fan.zhang@intel.com>
> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
>
> lib/ can be dropped from title:
> cryptodev: fix library version
Applied to dpdk-next-crypto

Thanks
  

Patch

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
@@ -7,7 +7,7 @@  include $(RTE_SDK)/mk/rte.vars.mk
 LIB = librte_cryptodev.a
 
 # library version
-LIBABIVER := 4
+LIBABIVER := 5
 
 # build flags
 CFLAGS += -O3
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
@@ -1,7 +1,7 @@ 
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-version = 4
+version = 5
 sources = files('rte_cryptodev.c', 'rte_cryptodev_pmd.c')
 headers = files('rte_cryptodev.h',
 	'rte_cryptodev_pmd.h',