6844d146ff
When a device is added with a devargs (hotplug or whitelist), the bus pointer can be retrieved via its devargs. But there is no such devargs.bus in case of standard scan. A pointer to the rte_bus handle is added to rte_device. When a device is allocated (during a scan), the pointer to its bus is assigned. It will make possible to remove a rte_device, using the function pointer from its bus. The function rte_bus_find_by_device() becomes useless, and may be removed later. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: Gaetan Rivet <gaetan.rivet@6wind.com> Reviewed-by: Stephen Hemminger <stephen@networkplumber.org>
32 lines
505 B
Makefile
32 lines
505 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
LIB = librte_bus_vdev.a
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_bus_vdev_version.map
|
|
|
|
# library version
|
|
LIBABIVER := 2
|
|
|
|
SRCS-y += vdev.c
|
|
SRCS-y += vdev_params.c
|
|
|
|
LDLIBS += -lrte_eal -lrte_kvargs
|
|
|
|
#
|
|
# Export include files
|
|
#
|
|
SYMLINK-y-include += rte_bus_vdev.h
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|