From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755345AbXEDOYt (ORCPT ); Fri, 4 May 2007 10:24:49 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755346AbXEDOYt (ORCPT ); Fri, 4 May 2007 10:24:49 -0400 Received: from ebiederm.dsl.xmission.com ([166.70.28.69]:55530 "EHLO ebiederm.dsl.xmission.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755345AbXEDOYr (ORCPT ); Fri, 4 May 2007 10:24:47 -0400 From: ebiederm@xmission.com (Eric W. Biederman) To: Rusty Russell Cc: Andi Kleen , Chris Wright , Jeremy Fitzhardinge , Zachary Amsden , Andrew Morton , Linus Torvalds , "H. Peter Anvin" , lkml - Kernel Mailing List Subject: Re: [RFC PATCH 1/3] Replace paravirt_probe with "platform type" boot header field References: <1178283582.23670.67.camel@localhost.localdomain> <1178288329.23670.86.camel@localhost.localdomain> Date: Fri, 04 May 2007 08:23:40 -0600 In-Reply-To: <1178288329.23670.86.camel@localhost.localdomain> (Rusty Russell's message of "Sat, 05 May 2007 00:18:49 +1000") Message-ID: User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Rusty Russell writes: > On Fri, 2007-05-04 at 08:01 -0600, Eric W. Biederman wrote: >> We should place that initial branch right after startup_32, >> we don't need the startup_paravirt at all now. >> >> ENTRY(startup_32) >> #ifdef CONFIG_LGUEST_GUEST >> cmpl $1, 0x23c(%esi) >> je lguest_init >> #endif > > Hi Eric! > > Makes sense to me, but I wasn't sure... do we need to check for old > bootloader versions and such? Unlikely. Unless we expect that this offset will come in non-zero. Eric