numam-dpdk/lib/ethdev/ethdev_trace_points.c
Bruce Richardson 99a2dd955f lib: remove librte_ prefix from directory names
There is no reason for the DPDK libraries to all have 'librte_' prefix on
the directory names. This prefix makes the directory names longer and also
makes it awkward to add features referring to individual libraries in the
build - should the lib names be specified with or without the prefix.
Therefore, we can just remove the library prefix and use the library's
unique name as the directory name, i.e. 'eal' rather than 'librte_eal'

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
2021-04-21 14:04:09 +02:00

32 lines
749 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2020 Marvell International Ltd.
*/
#include <rte_trace_point_register.h>
#include <rte_ethdev_trace.h>
RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_configure,
lib.ethdev.configure)
RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_rxq_setup,
lib.ethdev.rxq.setup)
RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_txq_setup,
lib.ethdev.txq.setup)
RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_start,
lib.ethdev.start)
RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_stop,
lib.ethdev.stop)
RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_close,
lib.ethdev.close)
RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_rx_burst,
lib.ethdev.rx.burst)
RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_tx_burst,
lib.ethdev.tx.burst)