diff options
author | Damjan Marion <damarion@cisco.com> | 2019-02-02 16:28:16 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-02-02 16:31:07 +0000 |
commit | 1a6ece34358a34367ff1807ac3a9a97b8a120b77 (patch) | |
tree | ff3df0b997689914129c8345e32815bda448298d /build/external/patches/dpdk_18.08/0005-mlx5-use-pkg-config-SUSE-libmnl.patch | |
parent | 773291163a4f72f131afc6a84b065bcfed13aeb7 (diff) |
dpdk: bump to dpdk 19.02
HQoS requires fixes to work with dpdk 19.02 so code is disabled and
pending deprecation unless active maintainer is found.
Change-Id: I3569c4287b6dfdd2c29e02375eb53bf01fa6ae84
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'build/external/patches/dpdk_18.08/0005-mlx5-use-pkg-config-SUSE-libmnl.patch')
-rw-r--r-- | build/external/patches/dpdk_18.08/0005-mlx5-use-pkg-config-SUSE-libmnl.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/build/external/patches/dpdk_18.08/0005-mlx5-use-pkg-config-SUSE-libmnl.patch b/build/external/patches/dpdk_18.08/0005-mlx5-use-pkg-config-SUSE-libmnl.patch deleted file mode 100644 index 454a85e83d1..00000000000 --- a/build/external/patches/dpdk_18.08/0005-mlx5-use-pkg-config-SUSE-libmnl.patch +++ /dev/null @@ -1,39 +0,0 @@ -From c030dc71ff4069c5b5e5b7889a2926617075f6e3 Mon Sep 17 00:00:00 2001 -From: Stephen Hemminger <stephen@networkplumber.org> -Date: Thu, 25 Oct 2018 10:33:01 -0700 -Subject: [PATCH] mlx5: use pkg-config to handle SUSE libmnl - -SUSE decided to install the libmnl include file in a non-standard -place: /usr/include/libmnl/libmnl/libmnl.h - -This was probably a mistake by the SUSE package maintainer, -but hard to get fixed. Workaround the problem by pkg-config to find -the necessary include directive for libmnl. - -Fixes: 20b71e92ef8e ("net/mlx5: lay groundwork for switch offloads") -Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> ---- - drivers/net/mlx5/Makefile | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/drivers/net/mlx5/Makefile b/drivers/net/mlx5/Makefile -index 1e9c0b42ac16..8497c98ef86e 100644 ---- a/drivers/net/mlx5/Makefile -+++ b/drivers/net/mlx5/Makefile -@@ -51,6 +51,7 @@ CFLAGS += -D_DEFAULT_SOURCE - CFLAGS += -D_XOPEN_SOURCE=600 - CFLAGS += $(WERROR_FLAGS) - CFLAGS += -Wno-strict-prototypes -+CFLAGS += $(shell pkg-config --cflags libmnl) - ifeq ($(CONFIG_RTE_LIBRTE_MLX5_DLOPEN_DEPS),y) - CFLAGS += -DMLX5_GLUE='"$(LIB_GLUE)"' - CFLAGS += -DMLX5_GLUE_VERSION='"$(LIB_GLUE_VERSION)"' -@@ -57,7 +58,7 @@ LDLIBS += -ldl - else - LDLIBS += -libverbs -lmlx5 - endif --LDLIBS += -lmnl -+LDLIBS += $(shell pkg-config --libs libmnl) - LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring - LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs - LDLIBS += -lrte_bus_pci |