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 52C1DC04A6A for ; Thu, 3 Aug 2023 13:21:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235138AbjHCNVV (ORCPT ); Thu, 3 Aug 2023 09:21:21 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42324 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234312AbjHCNVU (ORCPT ); Thu, 3 Aug 2023 09:21:20 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 10C79134 for ; Thu, 3 Aug 2023 06:21:19 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 9A24A61D85 for ; Thu, 3 Aug 2023 13:21:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D59D7C433C8; Thu, 3 Aug 2023 13:21:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1691068878; bh=P2Afs0UoL43WPKRc7AQyCm9Zj3/y9gTFP9/secVRq50=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=j4T7qtVAIdFa4b95sClAHJcmj2/zWG4VCBfAufvVa9/noUF+IXXkuLOa1Jv8wfoXS dXqL58HgXsvE0W2Yiz5sP5Ax05/g/O1qHGysvVr3t/7fOQSbZTiLcVClLKzCSW7CF7 3TuEy2kYu+hUhTdw2Zo4EJ7Z6NjbZnxrIP5KpE1/spdRnFuKvmvJhoDsyeZlDFogek cgliUp4Yx/DQVcEB4PiQU2lIBlPGyWf1w9RG9lWRPB8rSjOomXZJxeBSOL6wEp4Gsg c3H42Ohahdp8+xdVb9geB+gzwL/PyL4+Dq/DRWvizVXh8n+kyPPB4Vwy883vXmX4cu uQvZlY7ZmEC0w== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 370214012D; Thu, 3 Aug 2023 10:21:15 -0300 (-03) Date: Thu, 3 Aug 2023 10:21:15 -0300 From: Arnaldo Carvalho de Melo To: Ian Rogers Cc: Namhyung Kim , Adrian Hunter , Jiri Olsa , Linux Kernel Mailing List Subject: Re: [PATCH 1/1] perf script python: Cope with declarations after statements found in Python.h Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Url: http://acmel.wordpress.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Wed, Aug 02, 2023 at 10:31:21AM -0700, Ian Rogers escreveu: > On Wed, Aug 2, 2023 at 6:42 AM Arnaldo Carvalho de Melo wrote: > > So add -Wno-declaration-after-statement to the python scripting CFLAGS. > > > > Cc: Adrian Hunter > > Cc: Ian Rogers > > Cc: Jiri Olsa > > Cc: Namhyung Kim > > Link: https://lore.kernel.org/lkml/ > > Signed-off-by: Arnaldo Carvalho de Melo > > Reviewed-by: Ian Rogers Thanks, added the tag to both patches. - Arnaldo