Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754613Ab0DNJ3Z (ORCPT ); Wed, 14 Apr 2010 05:29:25 -0400 Received: from mx2.mail.elte.hu ([157.181.151.9]:57146 "EHLO mx2.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754254Ab0DNJ3Y (ORCPT ); Wed, 14 Apr 2010 05:29:24 -0400 Date: Wed, 14 Apr 2010 11:28:43 +0200 From: Ingo Molnar To: David Miller , git@vger.kernel.org Cc: imunsie@au1.ibm.com, linux-kernel@vger.kernel.org, a.p.zijlstra@chello.nl, paulus@samba.org, acme@redhat.com, kosaki.motohiro@jp.fujitsu.com, mitake@dcl.info.waseda.ac.jp, rusty@rustcorp.com.au, fweisbec@gmail.com, ebmunson@us.ibm.com, Valdis.Kletnieks@vt.edu, amwang@redhat.com, tfransosi@gmail.com, mhiramat@redhat.com, xiaoguangrong@cn.fujitsu.com, jaswinderrajput@gmail.com, arjan@linux.intel.com, hirofumi@mail.parknet.co.jp, efault@gmx.de, tzanussi@gmail.com, anton@samba.org, jkacur@redhat.com, lizf@cn.fujitsu.com, rostedt@goodmis.org Subject: Re: [PATCH] perf: Fix endianness argument compatibility Message-ID: <20100414092843.GD10537@elte.hu> References: <1271147857-11604-1-git-send-email-imunsie@au.ibm.com> <20100413.014821.34906166.davem@davemloft.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100413.014821.34906166.davem@davemloft.net> User-Agent: Mutt/1.5.20 (2009-08-17) X-ELTE-SpamScore: -2.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-2.0 required=5.9 tests=BAYES_00 autolearn=no SpamAssassin version=3.2.5 -2.0 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1804 Lines: 42 * David Miller wrote: > From: "Ian Munsie" > Date: Tue, 13 Apr 2010 18:37:33 +1000 > > > From: Ian Munsie > > > > Parsing an option from the command line with OPT_BOOLEAN on a bool data > > type would not work on a big-endian machine due to the manner in which > > the boolean was being cast into an int and incremented. For example, > > running 'perf probe --list' on a PowerPC machine would fail to properly > > set the list_events bool and would therefore print out the usage > > information and terminate. > > > > This patch makes OPT_BOOLEAN work as expected with a bool datatype. For > > cases where the original OPT_BOOLEAN was intentionally being used to > > increment an int each time it was passed in on the command line, this > > patch introduces OPT_INCR with the old behaviour of OPT_BOOLEAN (the > > verbose variable is currently the only such example of this). > > > > I have reviewed every use of OPT_BOOLEAN to verify that a true C99 bool > > was passed. Where integers were used, I verified that they were only > > being used for boolean logic and changed them to bools to ensure that > > they would not be mistakenly used as ints. The major exception was the > > verbose variable which now uses OPT_INCR instead of OPT_BOOLEAN. > > > > Signed-off-by: Ian Munsie > > Thanks for finding and fixing this bug. Nice fix! Btw., perf got the option parser from the Git project - i'm wondering how the Git folks solved this endianness problem? Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/