3810ae4357
Add support for interrupt driven queues when eth device is configured for rxq interrupts and servicing weight for the queue is configured to be zero. A interrupt driven packet received counter has been added to rte_event_eth_rx_adapter_stats. Signed-off-by: Nikhil Rao <nikhil.rao@intel.com>
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2016 Cavium, Inc
|
|
#
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_eventdev.a
|
|
|
|
# library version
|
|
LIBABIVER := 5
|
|
|
|
# build flags
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
|
|
CFLAGS += -DLINUX
|
|
else
|
|
CFLAGS += -DBSD
|
|
endif
|
|
LDLIBS += -lrte_eal -lrte_ring -lrte_ethdev -lrte_hash -lrte_mempool -lrte_timer
|
|
LDLIBS += -lrte_mbuf -lrte_cryptodev -lpthread
|
|
|
|
# library source files
|
|
SRCS-y += rte_eventdev.c
|
|
SRCS-y += rte_event_ring.c
|
|
SRCS-y += rte_event_eth_rx_adapter.c
|
|
SRCS-y += rte_event_timer_adapter.c
|
|
SRCS-y += rte_event_crypto_adapter.c
|
|
|
|
# export include files
|
|
SYMLINK-y-include += rte_eventdev.h
|
|
SYMLINK-y-include += rte_eventdev_pmd.h
|
|
SYMLINK-y-include += rte_eventdev_pmd_pci.h
|
|
SYMLINK-y-include += rte_eventdev_pmd_vdev.h
|
|
SYMLINK-y-include += rte_event_ring.h
|
|
SYMLINK-y-include += rte_event_eth_rx_adapter.h
|
|
SYMLINK-y-include += rte_event_timer_adapter.h
|
|
SYMLINK-y-include += rte_event_timer_adapter_pmd.h
|
|
SYMLINK-y-include += rte_event_crypto_adapter.h
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_eventdev_version.map
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|