From patchwork Wed Dec 1 17:39:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anthony PERARD X-Patchwork-Id: 73854 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BEAA3B6F11 for ; Thu, 2 Dec 2010 04:47:39 +1100 (EST) Received: from localhost ([127.0.0.1]:49027 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PNqmG-0005P5-I8 for incoming@patchwork.ozlabs.org; Wed, 01 Dec 2010 12:47:36 -0500 Received: from [140.186.70.92] (port=58458 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PNqfe-0001sd-2S for qemu-devel@nongnu.org; Wed, 01 Dec 2010 12:40:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PNqfc-0002ez-F8 for qemu-devel@nongnu.org; Wed, 01 Dec 2010 12:40:45 -0500 Received: from smtp02.citrix.com ([66.165.176.63]:44703) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PNqfc-0002cb-8C for qemu-devel@nongnu.org; Wed, 01 Dec 2010 12:40:44 -0500 X-IronPort-AV: E=Sophos;i="4.59,284,1288584000"; d="scan'208";a="124867332" Received: from ftlpexchmx01.citrite.net ([10.9.154.126]) by FTLPIPO02.CITRIX.COM with ESMTP; 01 Dec 2010 12:40:43 -0500 Received: from smtp01.ad.xensource.com ([10.219.128.104]) by FTLPEXCHMX01.citrite.net with Microsoft SMTPSVC(6.0.3790.4675); Wed, 1 Dec 2010 12:40:43 -0500 Received: from perard.cam.xci-test.com (perard.cam.xci-test.com [10.80.248.106]) by smtp01.ad.xensource.com (8.13.1/8.13.1) with ESMTP id oB1HeDN0028947; Wed, 1 Dec 2010 09:40:42 -0800 From: anthony.perard@citrix.com To: QEMU-devel Date: Wed, 1 Dec 2010 17:39:43 +0000 Message-Id: <1291225188-9972-12-git-send-email-anthony.perard@citrix.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1291225188-9972-1-git-send-email-anthony.perard@citrix.com> References: <1291225188-9972-1-git-send-email-anthony.perard@citrix.com> X-OriginalArrivalTime: 01 Dec 2010 17:40:43.0393 (UTC) FILETIME=[E0D19710:01CB917E] X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: Anthony PERARD , Xen Devel , Stefano Stabellini Subject: [Qemu-devel] [PATCH V8 11/16] configure: Always use 64bits target physical addresses with xen enabled. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Anthony PERARD With MapCache, we can handle a 64b target, even with a 32b host/qemu. So, we need to have target_phys_addr_t to 64bits. Signed-off-by: Anthony PERARD --- configure | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index a7a06ed..f3c524e 100755 --- a/configure +++ b/configure @@ -2958,6 +2958,7 @@ echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak case "$target_arch2" in i386|x86_64) if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then + target_phys_bits=64 echo "CONFIG_XEN=y" >> $config_target_mak echo "LIBS+=$xen_libs" >> $config_target_mak echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_target_mak