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 EEE99469E9; Wed, 18 Jun 2025 09:16:19 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7A6A8427B6; Wed, 18 Jun 2025 09:16:19 +0200 (CEST) Received: from dkmailrelay1.smartsharesystems.com (smartserver.smartsharesystems.com [77.243.40.215]) by mails.dpdk.org (Postfix) with ESMTP id 179BA427AE for ; Wed, 18 Jun 2025 09:16:18 +0200 (CEST) Received: from smartserver.smartsharesystems.com (smartserver.smartsharesys.local [192.168.4.10]) by dkmailrelay1.smartsharesystems.com (Postfix) with ESMTP id 99F5120462; Wed, 18 Jun 2025 09:16:17 +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 v2 6/6] trace: add PMU X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Wed, 18 Jun 2025 09:16:14 +0200 Message-ID: <98CBD80474FA8B44BF855DF32C47DC35E9FD08@smartserver.smartshare.dk> In-Reply-To: <20250618065618.4045910-7-tduszynski@marvell.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH v2 6/6] trace: add PMU Thread-Index: AdvgHigTecF2lcceQWe1aIseEBCZegAAR+cQ References: <20250616065341.3233106-1-tduszynski@marvell.com> <20250618065618.4045910-1-tduszynski@marvell.com> <20250618065618.4045910-7-tduszynski@marvell.com> From: =?iso-8859-1?Q?Morten_Br=F8rup?= To: "Tomasz Duszynski" , , Cc: , 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 > diff --git a/lib/meson.build b/lib/meson.build > index 1934cb4a29..87b567f01b 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -13,7 +13,7 @@ libraries =3D [ > 'kvargs', # eal depends on kvargs > 'argparse', > 'telemetry', # basic info querying > - 'pmu', > + 'pmu', # trace depends on pmu > 'eal', # everything depends on eal > 'ptr_compress', > 'ring', @Tomasz, Please re-read my v1 review feedback [1]: The PMU library should depend on the EAL, not the other way around! How else is the PMU library supposed to use EAL functions like = rte_mem_page_size()? @Jerin or @Bruce, do any of you have some suggestions for how to achieve = the proper dependency chain here? Worst case, we will have to move PMU into EAL. :-( [1]: = https://inbox.dpdk.org/dev/98CBD80474FA8B44BF855DF32C47DC35E9FCFA@smartse= rver.smartshare.dk/T/#u Besides that, good stuff. :-)