From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id BFB06A04AF; Sun, 3 May 2020 22:32:19 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9A69F1D514; Sun, 3 May 2020 22:32:12 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 78F3B1D443 for ; Sun, 3 May 2020 22:32:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1588537929; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=DfOgG8Dcb6Wueiki6tsimoJ/g0w5/TXzh2+Wx/NBnaA=; b=cfJIqvlSJDTSwhMc0gGr4Rn0qvToVH7xsL4/ERid9uqQKyc4wqj2k9CDwRp5Ll5eMSaK41 iEDpJunIcSPnGesHRwY20aH5dyd0mE0SYFhdEHyyqhQWGPH291robJs3FnFKyKNHGMdP+n W16fX9LtLKiAeQP+ighqJC08Fwyul5Y= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-358-HboU2D5sNRKGaJPgcI-irQ-1; Sun, 03 May 2020 16:32:07 -0400 X-MC-Unique: HboU2D5sNRKGaJPgcI-irQ-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D8C08800580; Sun, 3 May 2020 20:32:06 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.236]) by smtp.corp.redhat.com (Postfix) with ESMTP id 05CF06F972; Sun, 3 May 2020 20:32:04 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, Declan Doherty , Sunil Kumar Kori Date: Sun, 3 May 2020 22:31:28 +0200 Message-Id: <20200503203135.6493-2-david.marchand@redhat.com> In-Reply-To: <20200503203135.6493-1-david.marchand@redhat.com> References: <20200503203135.6493-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH 1/8] cryptodev: fix trace points registration X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Those trace points are defined but not registered. Fixes: 4cf30e3f3c35 ("cryptodev: add tracepoints") Signed-off-by: David Marchand --- 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_cry= ptodev/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) =09RTE_TRACE_POINT_REGISTER(rte_cryptodev_trace_asym_session_init, =09=09lib.cryptodev.asym.init); =20 +=09RTE_TRACE_POINT_REGISTER(rte_cryptodev_trace_sym_session_clear, +=09=09lib.cryptodev.sym.clear); + +=09RTE_TRACE_POINT_REGISTER(rte_cryptodev_trace_asym_session_clear, +=09=09lib.cryptodev.asym.clear); + =09RTE_TRACE_POINT_REGISTER(rte_cryptodev_trace_enqueue_burst, =09=09lib.cryptodev.enq.burst); =20 --=20 2.23.0