e815a7f693
Implement the operators of an rte_class for the ethdev abstraction layer. Register the layer as such. Signed-off-by: Gaetan Rivet <gaetan.rivet@6wind.com> Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
30 lines
567 B
Meson
30 lines
567 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
name = 'ethdev'
|
|
version = 10
|
|
allow_experimental_apis = true
|
|
sources = files('ethdev_private.c',
|
|
'ethdev_profile.c',
|
|
'rte_class_eth.c',
|
|
'rte_ethdev.c',
|
|
'rte_flow.c',
|
|
'rte_mtr.c',
|
|
'rte_tm.c')
|
|
|
|
headers = files('rte_ethdev.h',
|
|
'rte_ethdev_driver.h',
|
|
'rte_ethdev_core.h',
|
|
'rte_ethdev_pci.h',
|
|
'rte_ethdev_vdev.h',
|
|
'rte_eth_ctrl.h',
|
|
'rte_dev_info.h',
|
|
'rte_flow.h',
|
|
'rte_flow_driver.h',
|
|
'rte_mtr.h',
|
|
'rte_mtr_driver.h',
|
|
'rte_tm.h',
|
|
'rte_tm_driver.h')
|
|
|
|
deps += ['net', 'kvargs']
|