numam-dpdk/lib/cryptodev/rte_cryptodev_trace_fp.h
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

39 lines
864 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2020 Marvell International Ltd.
*/
#ifndef _RTE_CRYPTODEV_TRACE_FP_H_
#define _RTE_CRYPTODEV_TRACE_FP_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <rte_trace_point.h>
RTE_TRACE_POINT_FP(
rte_cryptodev_trace_enqueue_burst,
RTE_TRACE_POINT_ARGS(uint8_t dev_id, uint16_t qp_id, void **ops,
uint16_t nb_ops),
rte_trace_point_emit_u8(dev_id);
rte_trace_point_emit_u16(qp_id);
rte_trace_point_emit_ptr(ops);
rte_trace_point_emit_u16(nb_ops);
)
RTE_TRACE_POINT_FP(
rte_cryptodev_trace_dequeue_burst,
RTE_TRACE_POINT_ARGS(uint8_t dev_id, uint16_t qp_id, void **ops,
uint16_t nb_ops),
rte_trace_point_emit_u8(dev_id);
rte_trace_point_emit_u16(qp_id);
rte_trace_point_emit_ptr(ops);
rte_trace_point_emit_u16(nb_ops);
)
#ifdef __cplusplus
}
#endif
#endif /* _RTE_CRYPTODEV_TRACE_FP_H_ */