[dpdk-stable] patch 'bb/turbo_sw: fix dynamic linking' has been queued to LTS release 18.11.1
Kevin Traynor
ktraynor at redhat.com
Fri Jan 4 14:23:59 CET 2019
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 220ec355a1ba96aba580cc871e276d0f579e4a52 Mon Sep 17 00:00:00 2001
From: Kamil Chalupnik <kamilx.chalupnik at intel.com>
Date: Mon, 3 Dec 2018 14:48:11 +0100
Subject: [PATCH] bb/turbo_sw: fix dynamic linking
[ upstream commit 262ad21adccc42e8b82606317a23b90711a8adad ]
Building Turbo Software as shared library for AVX512 failed
due to wrong order of library in the library list (LDLIBS)
Fixes: b8cfe2c9aed2 ("bb/turbo_sw: add software turbo driver")
Signed-off-by: Kamil Chalupnik <kamilx.chalupnik at intel.com>
Acked-by: Amr Mokhtar <amr.mokhtar at intel.com>
---
drivers/baseband/turbo_sw/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/baseband/turbo_sw/Makefile b/drivers/baseband/turbo_sw/Makefile
index 79eb55477..d36467706 100644
--- a/drivers/baseband/turbo_sw/Makefile
+++ b/drivers/baseband/turbo_sw/Makefile
@@ -28,6 +28,6 @@ CFLAGS += -I$(FLEXRAN_SDK)/lib_crc
CFLAGS += -I$(FLEXRAN_SDK)/lib_rate_matching
-LDLIBS += -L$(FLEXRAN_SDK)/lib_crc -lcrc
LDLIBS += -L$(FLEXRAN_SDK)/lib_turbo -lturbo
+LDLIBS += -L$(FLEXRAN_SDK)/lib_crc -lcrc
LDLIBS += -L$(FLEXRAN_SDK)/lib_rate_matching -lrate_matching
LDLIBS += -L$(FLEXRAN_SDK)/lib_common -lcommon
--
2.19.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2019-01-04 13:23:07.862234241 +0000
+++ 0017-bb-turbo_sw-fix-dynamic-linking.patch 2019-01-04 13:23:07.000000000 +0000
@@ -1,13 +1,14 @@
-From 262ad21adccc42e8b82606317a23b90711a8adad Mon Sep 17 00:00:00 2001
+From 220ec355a1ba96aba580cc871e276d0f579e4a52 Mon Sep 17 00:00:00 2001
From: Kamil Chalupnik <kamilx.chalupnik at intel.com>
Date: Mon, 3 Dec 2018 14:48:11 +0100
Subject: [PATCH] bb/turbo_sw: fix dynamic linking
+[ upstream commit 262ad21adccc42e8b82606317a23b90711a8adad ]
+
Building Turbo Software as shared library for AVX512 failed
due to wrong order of library in the library list (LDLIBS)
Fixes: b8cfe2c9aed2 ("bb/turbo_sw: add software turbo driver")
-Cc: stable at dpdk.org
Signed-off-by: Kamil Chalupnik <kamilx.chalupnik at intel.com>
Acked-by: Amr Mokhtar <amr.mokhtar at intel.com>
More information about the stable
mailing list