From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:49785) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QHwH5-00020R-HD for qemu-devel@nongnu.org; Thu, 05 May 2011 06:59:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QHwH4-0003yd-Py for qemu-devel@nongnu.org; Thu, 05 May 2011 06:59:15 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:49814) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QHwH4-0003tS-Mz for qemu-devel@nongnu.org; Thu, 05 May 2011 06:59:14 -0400 From: Date: Thu, 5 May 2011 11:58:28 +0100 Message-ID: <1304593113-10689-14-git-send-email-anthony.perard@citrix.com> In-Reply-To: <1304593113-10689-1-git-send-email-anthony.perard@citrix.com> References: <1304593113-10689-1-git-send-email-anthony.perard@citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH V15 13/18] configure: Always use 64bits target physical addresses with xen enabled. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU-devel , Anthony Liguori , Alexander Graf Cc: Anthony PERARD , Xen Devel , Stefano Stabellini 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 Acked-by: Alexander Graf --- configure | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 6fc2bdd..3ba6401 100755 --- a/configure +++ b/configure @@ -3298,6 +3298,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 if test "$cpu" = "i386" -o "$cpu" = "x86_64"; then echo "CONFIG_XEN_MAPCACHE=y" >> $config_target_mak -- 1.7.2.5