]> git.proxmox.com Git - qemu.git/commitdiff
s390x: reduce TARGET_PHYS_ADDR_SPACE_BITS to 62
authorPaolo Bonzini <pbonzini@redhat.com>
Mon, 13 May 2013 13:54:44 +0000 (15:54 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 24 May 2013 16:43:35 +0000 (18:43 +0200)
With the next patch, the memory API will complain if the
TARGET_PHYS_ADDR_SPACE_BITS gets dangerously close to an
overflow.  s390x can handle up to 64 bit of physical address
space from its page tables, but we never use that much.  Just
decrease the value.

Cc: Alexander Graf <agraf@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
target-s390x/cpu.h

index 0ce82cf8300ddae876e597277632108f1634a945..6304c4d90b7e55317b4e738e3ef6cbdccfbe78b5 100644 (file)
 #include "exec/cpu-defs.h"
 #define TARGET_PAGE_BITS 12
 
-#define TARGET_PHYS_ADDR_SPACE_BITS 64
+/* Actually 64-bits, limited by the memory API to 62 bits.  We
+ * never use that much.
+ */
+#define TARGET_PHYS_ADDR_SPACE_BITS 62
 #define TARGET_VIRT_ADDR_SPACE_BITS 64
 
 #include "exec/cpu-all.h"