From 7ae5a7c0f63cc625cf31a9c9f18cc07f4049e48f Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Fri, 21 Jun 2013 15:57:31 +0200 Subject: s390x/ioinst: Fixed alignment check in SCHM instruction Register 2 only has to be aligned to a 32-byte boundary, not a full page boundary. Signed-off-by: Thomas Huth Acked-by: Cornelia Huck Signed-off-by: Christian Borntraeger --- target-s390x/ioinst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-s390x/ioinst.c b/target-s390x/ioinst.c index 0dc258fe3c..098bd8d5d3 100644 --- a/target-s390x/ioinst.c +++ b/target-s390x/ioinst.c @@ -688,7 +688,7 @@ int ioinst_handle_schm(CPUS390XState *env, uint64_t reg1, uint64_t reg2, update = SCHM_REG1_UPD(reg1); dct = SCHM_REG1_DCT(reg1); - if (update && (reg2 & 0x0000000000000fff)) { + if (update && (reg2 & 0x000000000000001f)) { program_interrupt(env, PGM_OPERAND, 2); return -EIO; } -- cgit v1.2.1