cryptodev: fix trace points registration

Those trace points are defined but not registered.

Fixes: 4cf30e3f3c ("cryptodev: add tracepoints")

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Sunil Kumar Kori <skori@marvell.com>
This commit is contained in:
David Marchand 2020-04-29 14:36:23 +02:00
parent f5bf02df31
commit b4f2fde1a5

View File

@ -61,6 +61,12 @@ RTE_INIT(cryptodev_trace_init)
RTE_TRACE_POINT_REGISTER(rte_cryptodev_trace_asym_session_init,
lib.cryptodev.asym.init);
RTE_TRACE_POINT_REGISTER(rte_cryptodev_trace_sym_session_clear,
lib.cryptodev.sym.clear);
RTE_TRACE_POINT_REGISTER(rte_cryptodev_trace_asym_session_clear,
lib.cryptodev.asym.clear);
RTE_TRACE_POINT_REGISTER(rte_cryptodev_trace_enqueue_burst,
lib.cryptodev.enq.burst);