Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261254AbVDMTWK (ORCPT ); Wed, 13 Apr 2005 15:22:10 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261253AbVDMTWK (ORCPT ); Wed, 13 Apr 2005 15:22:10 -0400 Received: from caramon.arm.linux.org.uk ([212.18.232.186]:22796 "EHLO caramon.arm.linux.org.uk") by vger.kernel.org with ESMTP id S261247AbVDMTVv (ORCPT ); Wed, 13 Apr 2005 15:21:51 -0400 Date: Wed, 13 Apr 2005 20:21:47 +0100 From: Russell King To: Petr Baudis Cc: Kernel Mailing List , Linus Torvalds , "Randy.Dunlap" , Ross Vandegrift , git@vger.kernel.org Subject: Re: Re: [ANNOUNCE] git-pasky-0.3 Message-ID: <20050413202147.D19329@flint.arm.linux.org.uk> Mail-Followup-To: Petr Baudis , Kernel Mailing List , Linus Torvalds , "Randy.Dunlap" , Ross Vandegrift , git@vger.kernel.org References: <20050410024157.GE3451@pasky.ji.cz> <20050410162723.GC26537@pasky.ji.cz> <20050411015852.GI5902@pasky.ji.cz> <20050411135758.GA3524@pasky.ji.cz> <20050413103521.D1798@flint.arm.linux.org.uk> <20050413200307.B19329@flint.arm.linux.org.uk> <20050413191339.GD25711@pasky.ji.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20050413191339.GD25711@pasky.ji.cz>; from pasky@ucw.cz on Wed, Apr 13, 2005 at 09:13:39PM +0200 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1636 Lines: 44 On Wed, Apr 13, 2005 at 09:13:39PM +0200, Petr Baudis wrote: > Dear diary, on Wed, Apr 13, 2005 at 09:03:07PM CEST, I got a letter > where Russell King told me that... > > On Wed, Apr 13, 2005 at 10:35:21AM +0100, Russell King wrote: > > > I tried this today, applied my patch for BE<->LE conversions and > > > glibc-2.2 compatibility (attached, still requires cleaning though), > > > and then tried git pull. Umm, whoops. > > > > Here's an updated patch which allows me to work with a BE-based > > cache. I've just used this to grab and checkout sparse.git. > > > > Note: it also fixes my glibc-2.2 build problem with the nsec > > stat64 structures (see read-cache.c). > > > > --- cache.h > > +++ cache.h Wed Apr 13 11:23:39 2005 > > @@ -14,6 +14,12 @@ > > #include > > #include > > > > +#include > > +#define cpu_to_beuint(x) (htonl(x)) > > +#define beuint_to_cpu(x) (ntohl(x)) > > +#define cpu_to_beushort(x) (htons(x)) > > +#define beushort_to_cpu(x) (ntohs(x)) > > + > > /* > > * Basic data structures for the directory cache > > * > > What do the wrapper macros gain us? Nothing much - I don't particularly care about them. I thought someone might object to using htonl/ntohl directly. -- Russell King Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: 2.6 Serial core - 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/