From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 00370C43217 for ; Wed, 16 Nov 2022 15:20:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234452AbiKPPUD (ORCPT ); Wed, 16 Nov 2022 10:20:03 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37092 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232615AbiKPPTb (ORCPT ); Wed, 16 Nov 2022 10:19:31 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 270435F94; Wed, 16 Nov 2022 07:19:31 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id B748B61E69; Wed, 16 Nov 2022 15:19:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DE47BC433D6; Wed, 16 Nov 2022 15:19:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1668611970; bh=amz+WZIooJmQLr8yARD9v3h2AKS1hVv79/Fc9v0jPko=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=lgy7/EgfDDgiAjirNledOE4UcOvHe22VMXF11MKlJJEFIdilsk8r2lWx9pHCCiUBt Le7C6+GaRANyL++vfbXrEUndFHYHwqkTiSbNL5Mp4xWjEsyLT182DzNc2sJpwj5+g9 hB3lrYqLRVDCMp/NUmmo3KfluO+FuUJsaySjonmcF3l4iZ4lo2dzKQXGfXWD6ygyEG zeQJJ99gB3HGxq7Dy1Uq5zEEpNwPKTfrgh1QLSrU6eIC3MXxqUBMG88cFg3ONt+snm JRM687rSpQtELuQtKSg3xv3RnnKzyMQ4YFa90ZI0Fd+s0iJCY6HGnOtKxDxR4g9sUQ 4w6FH2+FTyVdQ== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 734A04034E; Wed, 16 Nov 2022 12:19:27 -0300 (-03) Date: Wed, 16 Nov 2022 12:19:27 -0300 From: Arnaldo Carvalho de Melo To: Ian Rogers Cc: Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Masahiro Yamada , Nicolas Schier , linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org, bpf@vger.kernel.org, Nick Desaulniers , Andrii Nakryiko , Stephane Eranian Subject: Re: [PATCH 0/1] Fix perf tools/lib includes Message-ID: References: <20221116072211.2837834-1-irogers@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221116072211.2837834-1-irogers@google.com> X-Url: http://acmel.wordpress.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Tue, Nov 15, 2022 at 11:22:10PM -0800, Ian Rogers escreveu: > This patch replaces the last on kernel/git/acme/linux.git branch > perf/tools-libs-includes and fixes the race issue by using the prepare > dependency. pmu-events.c needs this dependency too, as the header > files it includes also include libperf - using perpare as a dependency > rather than $(LIBPERF) is more consistent with the rest of the makefile. > > Ian Rogers (1): > perf build: Use tools/lib headers from install path Testing. > tools/perf/Makefile.config | 2 -- > tools/perf/Makefile.perf | 14 +++++++++++++- > 2 files changed, 13 insertions(+), 3 deletions(-) > > -- > 2.38.1.431.g37b22c650d-goog -- - Arnaldo