event: Do not compile DPDK related code for non-DPDK env

dpdk_governor (and therefore scheduler_dynamic) use DPDK
env. It should not be compiled in non-DPDK env.

Signed-off-by: Maciej Szwed <maciej.szwed@intel.com>
Change-Id: I6b7cf15cf7383e6c1e77bfb188b24cabcc1f0fe1
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6102
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Community-CI: Broadcom CI
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
Maciej Szwed 2021-01-26 15:01:30 +01:00 committed by Tomasz Zawadzki
parent de3878ec31
commit 0bfc0391d1

View File

@ -41,10 +41,15 @@ CFLAGS += $(ENV_CFLAGS)
LIBNAME = event
C_SRCS = app.c reactor.c rpc.c subsystem.c json_config.c log_rpc.c \
app_rpc.c subsystem_rpc.c scheduler_static.c scheduler_dynamic.c
app_rpc.c subsystem_rpc.c scheduler_static.c
# Do not compile schedulers and governors based on DPDK env
# if non-DPDK env is used.
ENV_NAME := $(notdir $(CONFIG_ENV))
ifeq ($(ENV_NAME),env_dpdk)
ifeq ($(OS),Linux)
C_SRCS += gscheduler.c dpdk_governor.c
C_SRCS += gscheduler.c dpdk_governor.c scheduler_dynamic.c
endif
endif
SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_event.map)