From b4f2fde1a5cdb90f4a18fe9346eebe401f6a046d Mon Sep 17 00:00:00 2001 From: David Marchand Date: Wed, 29 Apr 2020 14:36:23 +0200 Subject: [PATCH 1/1] cryptodev: fix trace points registration Those trace points are defined but not registered. Fixes: 4cf30e3f3c35 ("cryptodev: add tracepoints") Signed-off-by: David Marchand Acked-by: Sunil Kumar Kori --- lib/librte_cryptodev/cryptodev_trace_points.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/librte_cryptodev/cryptodev_trace_points.c b/lib/librte_cryptodev/cryptodev_trace_points.c index 9df213e25b..7d03c93882 100644 --- a/lib/librte_cryptodev/cryptodev_trace_points.c +++ b/lib/librte_cryptodev/cryptodev_trace_points.c @@ -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); -- 2.20.1