[dpdk-stable] patch 'crypto/mvsam: fix shared library build' has been queued to stable release 18.08.1
Kevin Traynor
ktraynor at redhat.com
Thu Nov 22 17:48:53 CET 2018
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 feb078f2eee7ac3df6bcfcf3d325c829822680fc Mon Sep 17 00:00:00 2001
From: Tomasz Duszynski <tdu at semihalf.com>
Date: Fri, 21 Sep 2018 16:53:54 +0200
Subject: [PATCH] crypto/mvsam: fix shared library build
[ upstream commit 404ed8013aaa226b0c2ccec009cf5b66877892bd ]
Add missing rte_kvargs library dependency. Without that
shared library build fails due to unresolved rte_kvargs_* symbols.
Fixes: 25b05a1c806b ("crypto/mvsam: parse max number of sessions")
Signed-off-by: Tomasz Duszynski <tdu at semihalf.com>
---
drivers/crypto/mvsam/Makefile | 2 +-
drivers/crypto/mvsam/rte_mrvl_pmd.c | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/crypto/mvsam/Makefile b/drivers/crypto/mvsam/Makefile
index c3dc72c19..329014792 100644
--- a/drivers/crypto/mvsam/Makefile
+++ b/drivers/crypto/mvsam/Makefile
@@ -32,5 +32,5 @@ EXPORT_MAP := rte_pmd_mvsam_version.map
# external library dependencies
LDLIBS += -L$(LIBMUSDK_PATH)/lib -lmusdk
-LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool
+LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_kvargs
LDLIBS += -lrte_cryptodev
LDLIBS += -lrte_bus_vdev
diff --git a/drivers/crypto/mvsam/rte_mrvl_pmd.c b/drivers/crypto/mvsam/rte_mrvl_pmd.c
index 73eff7573..9d130b168 100644
--- a/drivers/crypto/mvsam/rte_mrvl_pmd.c
+++ b/drivers/crypto/mvsam/rte_mrvl_pmd.c
@@ -12,4 +12,5 @@
#include <rte_malloc.h>
#include <rte_cpuflags.h>
+#include <rte_kvargs.h>
#include "rte_mrvl_pmd_private.h"
--
2.19.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2018-11-22 16:47:32.310697443 +0000
+++ 0001-crypto-mvsam-fix-shared-library-build.patch 2018-11-22 16:47:32.000000000 +0000
@@ -1,13 +1,14 @@
-From 404ed8013aaa226b0c2ccec009cf5b66877892bd Mon Sep 17 00:00:00 2001
+From feb078f2eee7ac3df6bcfcf3d325c829822680fc Mon Sep 17 00:00:00 2001
From: Tomasz Duszynski <tdu at semihalf.com>
Date: Fri, 21 Sep 2018 16:53:54 +0200
Subject: [PATCH] crypto/mvsam: fix shared library build
+[ upstream commit 404ed8013aaa226b0c2ccec009cf5b66877892bd ]
+
Add missing rte_kvargs library dependency. Without that
shared library build fails due to unresolved rte_kvargs_* symbols.
Fixes: 25b05a1c806b ("crypto/mvsam: parse max number of sessions")
-Cc: stable at dpdk.org
Signed-off-by: Tomasz Duszynski <tdu at semihalf.com>
---
@@ -27,7 +28,7 @@
LDLIBS += -lrte_cryptodev
LDLIBS += -lrte_bus_vdev
diff --git a/drivers/crypto/mvsam/rte_mrvl_pmd.c b/drivers/crypto/mvsam/rte_mrvl_pmd.c
-index 9a85fd99e..7e800a694 100644
+index 73eff7573..9d130b168 100644
--- a/drivers/crypto/mvsam/rte_mrvl_pmd.c
+++ b/drivers/crypto/mvsam/rte_mrvl_pmd.c
@@ -12,4 +12,5 @@
More information about the stable
mailing list