From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A64B04597F; Fri, 13 Sep 2024 21:48:02 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 330BD42E5C; Fri, 13 Sep 2024 21:48:02 +0200 (CEST) Received: from dkmailrelay1.smartsharesystems.com (smartserver.smartsharesystems.com [77.243.40.215]) by mails.dpdk.org (Postfix) with ESMTP id C874E402B3 for ; Fri, 13 Sep 2024 21:48:00 +0200 (CEST) Received: from smartserver.smartsharesystems.com (smartserver.smartsharesys.local [192.168.4.10]) by dkmailrelay1.smartsharesystems.com (Postfix) with ESMTP id 8FDC120EE8; Fri, 13 Sep 2024 21:48:00 +0200 (CEST) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE: [PATCH] ethdev: optimize activation of fast-path tracepoints Date: Fri, 13 Sep 2024 21:47:59 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.5 Message-ID: <98CBD80474FA8B44BF855DF32C47DC35E9F6E4@smartserver.smartshare.dk> In-Reply-To: <20240913175828.21640-1-adel.belkhiri@gmail.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH] ethdev: optimize activation of fast-path tracepoints Thread-Index: AdsGBr6NB/hKL9GLTeGlb7KEe1CqvwADVLQQ References: <20240913175828.21640-1-adel.belkhiri@gmail.com> From: =?iso-8859-1?Q?Morten_Br=F8rup?= To: "Adel Belkhiri" Cc: , "Adel Belkhiri" , "Thomas Monjalon" , "Ferruh Yigit" , "Andrew Rybchenko" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org > +++ b/lib/ethdev/version.map > @@ -207,7 +207,8 @@ EXPERIMENTAL { > rte_flow_dev_dump; >=20 > # added in 20.05 > - __rte_ethdev_trace_rx_burst; > + __rte_ethdev_trace_rx_burst_empty; > + __rte_ethdev_trace_rx_burst_nonempty; These two should be moved down below "# added in 24.11" (which is not = yet there, so should be added too). And I don't know why __rte_eth_trace_call_rx_callbacks is not in the = version.map file, but I suppose these should be added too: + __rte_eth_trace_call_rx_callbacks_empty + __rte_eth_trace_call_rx_callbacks_nonempty Everything else looks good. With version.map corrected, Acked-by: Morten Br=F8rup