From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753202AbdFST0n (ORCPT ); Mon, 19 Jun 2017 15:26:43 -0400 Received: from foss.arm.com ([217.140.101.70]:56788 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753107AbdFST0k (ORCPT ); Mon, 19 Jun 2017 15:26:40 -0400 Date: Mon, 19 Jun 2017 14:26:33 -0500 From: Kim Phillips To: Arnaldo Carvalho de Melo Cc: Mathieu Poirier , Peter Zijlstra , Ingo Molnar , Alexander Shishkin , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] [perf/core branch] perf coresight: Fix ARM builds caused by misplaced __printf Message-Id: <20170619142633.51d138db0c0b8befa0542bf6@arm.com> In-Reply-To: <20170619184209.GB13640@kernel.org> References: <20170616145907.baba73eda242efe194e072d0@arm.com> <20170619184209.GB13640@kernel.org> Organization: ARM X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 19 Jun 2017 15:42:09 -0300 Arnaldo Carvalho de Melo wrote: > Em Mon, Jun 19, 2017 at 11:51:20AM -0600, Mathieu Poirier escreveu: > > On 16 June 2017 at 13:59, Kim Phillips wrote: > > > -static int cs_device__print_file(const char *name, const char *fmt, ...) __printf(2, 3) > > > +static int __printf(2, 3) cs_device__print_file(const char *name, const char *fmt, ...) > > > { > > > va_list args; > > > FILE *file; > > > > I just tested Kim's solution on my side. > > > > Acked-by: Mathieu Poirier > > Thanks for checking, since I haven't pushed this to Ingo I just squashed > Kim's fix into the buggy cset. > > Now I'm trying to build it with lots of cross build containers to see if > there are any other problems before push this up to Ingo. Thanks, I'm still trying to learn the submission process... Slightly off-topic, but when you push kernel.org/.../acme/linux.git, do you push --tags? If I do a fresh clone, checkout perf/core or urgent, build perf, PERF-VERSION-GEN first uses git to find the version number, then the Makefile. But in acme/linux.git, the latest version tag looks to match the master branch version: 3.2: so I get a 3.2-reporting version on what should be 4.12-rc4 (perf/core's current Makefile): $ tools/perf/perf --version perf version 3.2.gd15e591 Is this an acme/linux.git tree maintenance issue, or should PERF-VERSION-GEN be modified to compare versions gotten from git vs. the Makefile, and just use the higher one? Thanks, Kim