78d44153de
Add tracepoints at important and mandatory APIs for tracing support. Signed-off-by: Sunil Kumar Kori <skori@marvell.com> Acked-by: David Marchand <david.marchand@redhat.com>
31 lines
607 B
Meson
31 lines
607 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
name = 'ethdev'
|
|
sources = files('ethdev_private.c',
|
|
'ethdev_profile.c',
|
|
'ethdev_trace_points.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_trace.h',
|
|
'rte_ethdev_trace_fp.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', 'meter']
|