From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tama50.ecl.ntt.co.jp (tama50.ecl.ntt.co.jp [129.60.39.147]) by dpdk.org (Postfix) with ESMTP id 7848F493D for ; Tue, 15 Jan 2019 04:30:52 +0100 (CET) Received: from vc1.ecl.ntt.co.jp (vc1.ecl.ntt.co.jp [129.60.86.153]) by tama50.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id x0F3UpYX029187; Tue, 15 Jan 2019 12:30:51 +0900 Received: from vc1.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 0C229EA7D00; Tue, 15 Jan 2019 12:30:51 +0900 (JST) Received: from localhost.localdomain (lobster.nslab.ecl.ntt.co.jp [129.60.13.95]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id F2FFAEA7CD3; Tue, 15 Jan 2019 12:30:50 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: ferruh.yigit@intel.com, spp@dpdk.org, ogawa.yasufumi@lab.ntt.co.jp Date: Tue, 15 Jan 2019 12:28:37 +0900 Message-Id: <1547522918-10223-6-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1547522918-10223-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> References: <1547522918-10223-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-TM-AS-MML: disable Subject: [spp] [PATCH 5/6] spp_vf: update makefile X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jan 2019 03:30:53 -0000 From: Yasufumi Ogawa Change makefile and root header file of spp_vf to include updated files. Signed-off-by: Yasufumi Ogawa --- src/vf/Makefile | 3 ++- src/vf/spp_vf.h | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/vf/Makefile b/src/vf/Makefile index ac100bb..03c668f 100644 --- a/src/vf/Makefile +++ b/src/vf/Makefile @@ -17,10 +17,11 @@ SRCS-y += common/string_buffer.c common/ringlatencystats.c common/spp_port.c SRCS-y += common/command_conn.c common/command_dec.c common/command_proc.c SRCS-y += common/spp_proc.c SRCS-y += ../shared/common.c +SRCS-y += ../shared/secondary/utils.c ../shared/secondary/add_port.c CFLAGS += -DALLOW_EXPERIMENTAL_API CFLAGS += $(WERROR_FLAGS) -O3 -MMD -CFLAGS += -I$(SRCDIR)/../shared +CFLAGS += -I$(SRCDIR)/../ CFLAGS += -I$(SRCDIR)/common CFLAGS += -DSPP_VF_MODULE #CFLAGS += -DSPP_DEMONIZE diff --git a/src/vf/spp_vf.h b/src/vf/spp_vf.h index f7f08c8..8465f1b 100644 --- a/src/vf/spp_vf.h +++ b/src/vf/spp_vf.h @@ -13,6 +13,8 @@ * This provides the function for initializing and starting the threads. */ -#include "common.h" +#include "shared/common.h" + +#define RTE_LOGTYPE_APP RTE_LOGTYPE_USER1 #endif /* __SPP_VF_H__ */ -- 2.17.1