From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965921AbXDBVSe (ORCPT ); Mon, 2 Apr 2007 17:18:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S965933AbXDBVSe (ORCPT ); Mon, 2 Apr 2007 17:18:34 -0400 Received: from mx1.redhat.com ([66.187.233.31]:49066 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965921AbXDBVSa (ORCPT ); Mon, 2 Apr 2007 17:18:30 -0400 Date: Mon, 2 Apr 2007 16:47:46 -0300 From: Glauber de Oliveira Costa To: linux-kernel@vger.kernel.org, virtualist@redhat.com, Rusty Russell Subject: [PATCH 2/2] Arch-specific includes Message-ID: <20070402194746.GC7711@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="E/DnYTRukya0zdZ1" Content-Disposition: inline User-Agent: Mutt/1.5.11 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org --E/DnYTRukya0zdZ1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline All that is left for the architectures, is the room for some specific definitions. Signed-off-by: Glauber de Oliveira Costa -- Glauber de Oliveira Costa Red Hat Inc. "Free as in Freedom" --E/DnYTRukya0zdZ1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline; filename="lgarchdefs.patch" --- /dev/null 2007-04-02 15:35:49.510433377 -0300 +++ i386/lguest_defs.h 2007-04-02 16:19:27.000000000 -0300 @@ -0,0 +1,7 @@ +#ifndef _LGUEST_DEFS_H_ +#define _LGUEST_DEFS_H_ + +/* LGUEST_TOP_ADDRESS comes from the Makefile */ +#define RESERVE_TOP_ADDRESS LGUEST_GUEST_TOP - 1024*1024 + +#endif --- /dev/null 2007-04-02 15:35:49.510433377 -0300 +++ x86_64/lguest_defs.h 2007-04-02 16:19:27.000000000 -0300 @@ -0,0 +1,11 @@ +#ifndef _LGUEST_DEFS_H_ +#define _LGUEST_DEFS_H_ + +#include + +/* LGUEST_TOP_ADDRESS comes from the Makefile */ +#define RESERVE_TOP_ADDRESS LGUEST_GUEST_TOP + +#define BOOT_PGTABLE "boot_level4_pgt" + +#endif --E/DnYTRukya0zdZ1--