40ef35f4a5
If user wants the VF to be used in VDPA (vhost data path acceleration) mode, then the user can add a "vdpa=1" parameter for the device. So if driver does not find this option, it should quit and let the bus continue the probe. Signed-off-by: Xiao Wang <xiao.w.wang@intel.com> Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
37 lines
746 B
Makefile
37 lines
746 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
LIB = librte_pmd_ifc.a
|
|
|
|
LDLIBS += -lpthread
|
|
LDLIBS += -lrte_eal -lrte_pci -lrte_vhost -lrte_bus_pci
|
|
LDLIBS += -lrte_kvargs
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
|
|
#
|
|
# Add extra flags for base driver source files to disable warnings in them
|
|
#
|
|
BASE_DRIVER_OBJS=$(sort $(patsubst %.c,%.o,$(notdir $(wildcard $(SRCDIR)/base/*.c))))
|
|
|
|
VPATH += $(SRCDIR)/base
|
|
|
|
EXPORT_MAP := rte_pmd_ifc_version.map
|
|
|
|
LIBABIVER := 1
|
|
|
|
#
|
|
# all source are stored in SRCS-y
|
|
#
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IFC_PMD) += ifcvf_vdpa.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IFC_PMD) += ifcvf.c
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|