]> Git Repo - qemu.git/commitdiff
s390x/kvm: helper to set the SIGP status in SigpInfo
authorDavid Hildenbrand <[email protected]>
Tue, 24 Feb 2015 13:15:25 +0000 (14:15 +0100)
committerChristian Borntraeger <[email protected]>
Tue, 10 Mar 2015 08:26:22 +0000 (09:26 +0100)
Whenever we set the SIGP status in the status register, we have to wipe out
the lower 4 bytes and keep the higher 4 bytes. Also the condition code will
always be set to STATUS_STORED.

Let's introduce the wrapper for SigpInfo, as this will avoid most duplicate
code in the future.

Reviewed-by: Thomas Huth <[email protected]>
Reviewed-by: Cornelia Huck <[email protected]>
Signed-off-by: Jens Freimann <[email protected]>
Signed-off-by: David Hildenbrand <[email protected]>
Message-Id: <1424783731[email protected]>
Signed-off-by: Christian Borntraeger <[email protected]>
target-s390x/kvm.c

index aaf703eecdd22635f5bf308b886c3a68789e32ac..28d26c1996efac2a986ae98683b9c87113203436 100644 (file)
@@ -1118,6 +1118,13 @@ typedef struct SigpInfo {
     uint64_t *status_reg;
 } SigpInfo;
 
+static void set_sigp_status(SigpInfo *si, uint64_t status)
+{
+    *si->status_reg &= 0xffffffff00000000ULL;
+    *si->status_reg |= status;
+    si->cc = SIGP_CC_STATUS_STORED;
+}
+
 static void sigp_start(void *arg)
 {
     SigpInfo *si = arg;
@@ -1202,9 +1209,7 @@ static int handle_sigp_single_dst(S390CPU *dst_cpu, uint8_t order,
         break;
     default:
         DPRINTF("KVM: unknown SIGP: 0x%x\n", order);
-        *status_reg &= 0xffffffff00000000ULL;
-        *status_reg |= SIGP_STAT_INVALID_ORDER;
-        si.cc = SIGP_CC_STATUS_STORED;
+        set_sigp_status(&si, SIGP_STAT_INVALID_ORDER);
     }
 
     return si.cc;
This page took 0.028484 seconds and 4 git commands to generate.