summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJanosch Frank2020-06-24 09:52:20 +0200
committerThomas Huth2020-07-02 10:00:11 +0200
commitb88faa1c899db2fae8b5b168aeb6c47bef090f27 (patch)
tree6eb1b59f698237ca3f31288621a53961e98dc876
parentpc-bios: s390x: Get rid of magic offsets into the lowcore (diff)
downloadqemu-b88faa1c899db2fae8b5b168aeb6c47bef090f27.tar.gz
qemu-b88faa1c899db2fae8b5b168aeb6c47bef090f27.tar.xz
qemu-b88faa1c899db2fae8b5b168aeb6c47bef090f27.zip
pc-bios: s390x: Rename PSW_MASK_ZMODE to PSW_MASK_64
This constant enables 64 bit addressing, not the ESAME architecture, so it shouldn't be named ZMODE. Signed-off-by: Janosch Frank <frankja@linux.ibm.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20200624075226.92728-7-frankja@linux.ibm.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r--pc-bios/s390-ccw/s390-arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pc-bios/s390-ccw/s390-arch.h b/pc-bios/s390-ccw/s390-arch.h
index 5f36361c02..73852029d4 100644
--- a/pc-bios/s390-ccw/s390-arch.h
+++ b/pc-bios/s390-ccw/s390-arch.h
@@ -29,7 +29,7 @@ _Static_assert(sizeof(struct PSWLegacy) == 8, "PSWLegacy size incorrect");
#define PSW_MASK_WAIT 0x0002000000000000ULL
#define PSW_MASK_EAMODE 0x0000000100000000ULL
#define PSW_MASK_BAMODE 0x0000000080000000ULL
-#define PSW_MASK_ZMODE (PSW_MASK_EAMODE | PSW_MASK_BAMODE)
+#define PSW_MASK_64 (PSW_MASK_EAMODE | PSW_MASK_BAMODE)
/* Low core mapping */
typedef struct LowCore {