From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932192AbXEADpx (ORCPT ); Mon, 30 Apr 2007 23:45:53 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932398AbXEADpw (ORCPT ); Mon, 30 Apr 2007 23:45:52 -0400 Received: from terminus.zytor.com ([192.83.249.54]:40168 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932212AbXEADpu (ORCPT ); Mon, 30 Apr 2007 23:45:50 -0400 Message-ID: <4636B7DE.5050005@zytor.com> Date: Mon, 30 Apr 2007 20:45:34 -0700 From: "H. Peter Anvin" User-Agent: Thunderbird 2.0.0.0 (X11/20070419) MIME-Version: 1.0 To: Rusty Russell CC: "Eric W. Biederman" , Jeremy Fitzhardinge , Jeff Garzik , Andi Kleen , patches@x86-64.org, Vivek Goyal , linux-kernel@vger.kernel.org, virtualization Subject: Re: [patches] [PATCH] [21/22] x86_64: Extend bzImage protocol for relocatable bzImage References: <20070428758.455116000@suse.de> <20070428175909.1D09D151CA@wotan.suse.de> <46338D72.70402@garzik.org> <4634483E.9030307@goop.org> <1177902195.30071.203.camel@localhost.localdomain> <463572B7.90202@zytor.com> <1177909434.30071.216.camel@localhost.localdomain> <1177990722.28659.39.camel@localhost.localdomain> In-Reply-To: <1177990722.28659.39.camel@localhost.localdomain> X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Rusty Russell wrote: > > It'd be nicer if there were a "struct boot_params" declaration, but we > can't have everything. It's in my patchset-under-development. (Preview snapshot: http://userweb.kernel.org/~hpa/setup-snapshot-2007.04.30.patch) > diff -r 9a673a220ad6 Documentation/lguest/lguest.c > --- a/Documentation/lguest/lguest.c Mon Apr 30 20:10:26 2007 +1000 > +++ b/Documentation/lguest/lguest.c Tue May 01 13:19:02 2007 +1000 > @@ -30,10 +30,12 @@ > #include > #include > #include > +typedef unsigned long long u64; > typedef uint32_t u32; > typedef uint16_t u16; > typedef uint8_t u8; Why not uint64_t to go along with all the other defines? -hpa From mboxrd@z Thu Jan 1 00:00:00 1970 From: "H. Peter Anvin" Subject: Re: [patches] [PATCH] [21/22] x86_64: Extend bzImage protocol for relocatable bzImage Date: Mon, 30 Apr 2007 20:45:34 -0700 Message-ID: <4636B7DE.5050005@zytor.com> References: <20070428758.455116000@suse.de> <20070428175909.1D09D151CA@wotan.suse.de> <46338D72.70402@garzik.org> <4634483E.9030307@goop.org> <1177902195.30071.203.camel@localhost.localdomain> <463572B7.90202@zytor.com> <1177909434.30071.216.camel@localhost.localdomain> <1177990722.28659.39.camel@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1177990722.28659.39.camel@localhost.localdomain> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: virtualization-bounces@lists.linux-foundation.org Errors-To: virtualization-bounces@lists.linux-foundation.org To: Rusty Russell Cc: Jeff Garzik , patches@x86-64.org, linux-kernel@vger.kernel.org, Vivek Goyal , "Eric W. Biederman" , virtualization List-Id: virtualization@lists.linuxfoundation.org Rusty Russell wrote: > > It'd be nicer if there were a "struct boot_params" declaration, but we > can't have everything. It's in my patchset-under-development. (Preview snapshot: http://userweb.kernel.org/~hpa/setup-snapshot-2007.04.30.patch) > diff -r 9a673a220ad6 Documentation/lguest/lguest.c > --- a/Documentation/lguest/lguest.c Mon Apr 30 20:10:26 2007 +1000 > +++ b/Documentation/lguest/lguest.c Tue May 01 13:19:02 2007 +1000 > @@ -30,10 +30,12 @@ > #include > #include > #include > +typedef unsigned long long u64; > typedef uint32_t u32; > typedef uint16_t u16; > typedef uint8_t u8; Why not uint64_t to go along with all the other defines? -hpa