4ebbe84dae
This commit fixes a compilation error if EM_PMD is
not defined, bug IGB_PMD is. The root cause of the
issue was that log init variables are declared as
extern in a header file, while the definition of the
variables was in e1000_ethdev.c. Hence, the definitions
were not available if the e1000 PMD is disabled.
To fix this, a new file is added e1000_logs.c, which
matches the e1000_logs.h header. The log variables are
always compiled in, but the PMD logs are only registered
if a PMD is enabled in the configuration. Extra checks
are added in order to avoid duplicate registering.
Fixes: ed5bbb767c
("net/e1000: implement dynamic logging")
Cc: stable@dpdk.org
Reported-by: Vipin Varghese <vipin.varghese@intel.com>
Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>
Acked-by: Vipin Varghese <vipin.varghese@intel.com>
81 lines
2.5 KiB
Makefile
81 lines
2.5 KiB
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2015 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
LIB = librte_pmd_e1000.a
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
|
|
LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs
|
|
LDLIBS += -lrte_bus_pci
|
|
|
|
EXPORT_MAP := rte_pmd_e1000_version.map
|
|
|
|
LIBABIVER := 1
|
|
|
|
ifeq ($(CONFIG_RTE_TOOLCHAIN_ICC),y)
|
|
#
|
|
# CFLAGS for icc
|
|
#
|
|
CFLAGS_BASE_DRIVER = -diag-disable 177 -diag-disable 181
|
|
CFLAGS_BASE_DRIVER += -diag-disable 869 -diag-disable 2259
|
|
else
|
|
#
|
|
# CFLAGS for gcc/clang
|
|
#
|
|
CFLAGS_BASE_DRIVER = -Wno-uninitialized -Wno-unused-parameter
|
|
CFLAGS_BASE_DRIVER += -Wno-unused-variable
|
|
ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
|
|
ifeq ($(shell test $(GCC_VERSION) -ge 60 && echo 1), 1)
|
|
CFLAGS_BASE_DRIVER += -Wno-misleading-indentation
|
|
ifeq ($(shell test $(GCC_VERSION) -ge 70 && echo 1), 1)
|
|
CFLAGS_BASE_DRIVER += -Wno-implicit-fallthrough
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
#
|
|
# Add extra flags for base driver files (also known as shared code)
|
|
# to disable warnings in them
|
|
#
|
|
BASE_DRIVER_OBJS=$(sort $(patsubst %.c,%.o,$(notdir $(wildcard $(SRCDIR)/base/*.c))))
|
|
$(foreach obj, $(BASE_DRIVER_OBJS), $(eval CFLAGS_$(obj)+=$(CFLAGS_BASE_DRIVER)))
|
|
|
|
VPATH += $(SRCDIR)/base
|
|
|
|
#
|
|
# all source are stored in SRCS-y
|
|
#
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_80003es2lan.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_82540.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_82541.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_82542.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_82543.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_82571.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_82575.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_i210.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_api.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_ich8lan.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_logs.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_mac.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_manage.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_mbx.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_nvm.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_osdep.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_phy.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += e1000_vf.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGB_PMD) += igb_ethdev.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGB_PMD) += igb_rxtx.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGB_PMD) += igb_pf.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGB_PMD) += igb_flow.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_EM_PMD) += em_ethdev.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_EM_PMD) += em_rxtx.c
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|