From f123e84129c7b1d221e96635fa5ba87ad49f330e Mon Sep 17 00:00:00 2001 From: paul luse Date: Fri, 3 May 2019 16:21:59 -0400 Subject: [PATCH] env_dpdk: update makefile to link rte_mbuf Will need this for upcoming compress patches so remove from its current conditional linking and link for all. Change-Id: Iba0cf0f529a0765b6d54f7f88eb86e516c5b89ee Signed-off-by: paul luse Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/453026 Tested-by: SPDK CI Jenkins Reviewed-by: Shuhei Matsumoto Reviewed-by: Jim Harris Reviewed-by: Darek Stojaczyk --- lib/env_dpdk/env.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/env_dpdk/env.mk b/lib/env_dpdk/env.mk index 3c0732f44..e539690c2 100644 --- a/lib/env_dpdk/env.mk +++ b/lib/env_dpdk/env.mk @@ -54,7 +54,7 @@ else DPDK_LIB_EXT = .so endif -DPDK_LIB_LIST = rte_eal rte_mempool rte_ring +DPDK_LIB_LIST = rte_eal rte_mempool rte_ring rte_mbuf # librte_mempool_ring was new added from DPDK 17.05. Link this library used for # ring based mempool management API. @@ -102,7 +102,7 @@ endif ifneq ($(CONFIG_VHOST_INTERNAL_LIB),y) ifneq (, $(wildcard $(DPDK_ABS_DIR)/lib/librte_vhost.*)) -DPDK_LIB_LIST += rte_vhost rte_net rte_hash rte_mbuf +DPDK_LIB_LIST += rte_vhost rte_net rte_hash ifneq ($(DPDK_FRAMEWORK),y) DPDK_LIB_LIST += rte_cryptodev endif