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 57970ECAAA1 for ; Fri, 9 Sep 2022 13:45:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231137AbiIINpf (ORCPT ); Fri, 9 Sep 2022 09:45:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46358 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229873AbiIINpb (ORCPT ); Fri, 9 Sep 2022 09:45:31 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6F5AF3A141; Fri, 9 Sep 2022 06:45:12 -0700 (PDT) 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 7CCCA61FF5; Fri, 9 Sep 2022 13:43:55 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AA603C433D6; Fri, 9 Sep 2022 13:43:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1662731034; bh=ka023ytyyv+ZyIkoN5VtuWKrjVE1dqvusBT/4c6ZpSk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=KuBq1Dg02Hyvr87fWI0TMmp4Yrn7BIRFD36SPRRAXtpdEgSoqqwhZo+URBzJitA77 t3xd0YfYJD14+uCVKkFdQvHUW6HeoexPQduoALYosn7d6QmLfXMGSu7Lm7U1l0wwal exDZlNrJybWqxuqzqJU6xOL8H4UVF07i3WCsb4OozbmvGsY1YYFEU3tmmHevHN3wYu Zh82GSXmd46oyIJSGJicxs2gUG7qpwbYiJBJEpz32ezf2tlkhQydok4qGXEZshnHK5 ArcIlwA5YEX1h18n4/BBRcb0PjbLr5lGEYhdEZVsLgWCQpSO6jVtYxguqjceDXTV/n GufQGYIDFJHjw== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 5EA50404A1; Fri, 9 Sep 2022 10:43:52 -0300 (-03) Date: Fri, 9 Sep 2022 10:43:52 -0300 From: Arnaldo Carvalho de Melo To: James Clark Cc: Gaosheng Cui , linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org, peterz@infradead.org, mingo@redhat.com, mark.rutland@arm.com, alexander.shishkin@linux.intel.com, jolsa@kernel.org, namhyung@kernel.org, atrajeev@linux.vnet.ibm.com, eranian@google.com Subject: Re: [PATCH 2/2] perf tools: remove perf_pmu_lex declaration Message-ID: References: <20220909044542.1087870-1-cuigaosheng1@huawei.com> <20220909044542.1087870-3-cuigaosheng1@huawei.com> <50fba997-d8c1-257b-fd11-db2bb1e53f70@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <50fba997-d8c1-257b-fd11-db2bb1e53f70@arm.com> X-Url: http://acmel.wordpress.com Precedence: bulk List-ID: X-Mailing-List: linux-perf-users@vger.kernel.org Em Fri, Sep 09, 2022 at 11:29:43AM +0100, James Clark escreveu: > > > On 09/09/2022 05:45, Gaosheng Cui wrote: > > perf_pmu_lex has been removed since > > commit 65f3e56e0c81 ("perf tools: Remove auto-generated bison/flex files"), > > so remove it. > > Not 100% sure if that is the right commit to reference because it didn't > touch pmu.y. Yeah, indeed, unsure if at that time the declaration was needed. > perf_pmu_lex is still used and there are plenty of references to it, but > maybe the extern declaration isn't needed anymore because it still > builds for me with this change. Ditto here, I'll remove the reference and rewrite the cset log a bit. - Arnaldo