From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Mason Subject: Re: [PATCH] btrfs: fix __ucmpdi2 compile bug on 32 bit builds Date: Fri, 27 Mar 2009 10:37:44 -0400 Message-ID: <1238164664.27455.8.camel@think.oraclecorp.com> References: <20090327134252.0f24773b@osiris.boeblingen.de.ibm.com> <20090328011626.5d6f94f4.sfr@canb.auug.org.au> <20090327142401.GA29999@bombadil.infradead.org> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: Stephen Rothwell , Heiko Carstens , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org To: Kyle McMartin Return-path: Received: from rcsinet13.oracle.com ([148.87.113.125]:39505 "EHLO rgminet13.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758687AbZC0OiP (ORCPT ); Fri, 27 Mar 2009 10:38:15 -0400 In-Reply-To: <20090327142401.GA29999@bombadil.infradead.org> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On Fri, 2009-03-27 at 10:24 -0400, Kyle McMartin wrote: > On Sat, Mar 28, 2009 at 01:16:26AM +1100, Stephen Rothwell wrote: > > > - switch (em->block_start) { > > > - case EXTENT_MAP_LAST_BYTE: > > > + if (em->block_start == EXTENT_MAP_LAST_BYTE) { > > > > I might be a good idea to put a comment there about why this isn't a > > switch statement so that someone doesn't "clean up" this code in the > > future. > > > > nrrrgh. Remind me why we can't just add the libgcc helpers? > > Unless we plan on growing some more of these, surely we can just reduce > it to a u32 for the switch... EXTENT_MAP_LAST_BYTE is something like (u64)-5 This if/else setup is fine, I'll take the patch. -chris