902636
From a2befb24c10f58ce6c27d242f3b88afee1f77ec8 Mon Sep 17 00:00:00 2001
902636
From: Thomas Huth <thuth@redhat.com>
902636
Date: Tue, 7 Jul 2020 09:35:31 -0400
902636
Subject: [PATCH 2/4] s390x: sigp: Fix sense running reporting
902636
902636
RH-Author: Thomas Huth <thuth@redhat.com>
902636
Message-id: <20200707093532.22456-2-thuth@redhat.com>
902636
Patchwork-id: 97920
902636
O-Subject: [RHEL-8.3.0 qemu-kvm PATCH 1/2] s390x: sigp: Fix sense running reporting
902636
Bugzilla: 1854092
902636
RH-Acked-by: Jens Freimann <jfreimann@redhat.com>
902636
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
902636
RH-Acked-by: David Hildenbrand <david@redhat.com>
902636
902636
From: Janosch Frank <frankja@linux.ibm.com>
902636
902636
The logic was inverted and reported running if the cpu was stopped.
902636
Let's fix that.
902636
902636
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
902636
Fixes: d1b468bc8869 ("s390x/tcg: implement SIGP SENSE RUNNING STATUS")
902636
Reviewed-by: David Hildenbrand <david@redhat.com>
902636
Message-Id: <20200124134818.9981-1-frankja@linux.ibm.com>
902636
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
902636
(cherry picked from commit 4103500e2fa934a6995e4cedab37423e606715bf)
902636
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
902636
---
902636
 target/s390x/sigp.c | 4 ++--
902636
 1 file changed, 2 insertions(+), 2 deletions(-)
902636
902636
diff --git a/target/s390x/sigp.c b/target/s390x/sigp.c
902636
index 727875bb4a..c604f17710 100644
902636
--- a/target/s390x/sigp.c
902636
+++ b/target/s390x/sigp.c
902636
@@ -348,9 +348,9 @@ static void sigp_sense_running(S390CPU *dst_cpu, SigpInfo *si)
902636
 
902636
     /* If halted (which includes also STOPPED), it is not running */
902636
     if (CPU(dst_cpu)->halted) {
902636
-        si->cc = SIGP_CC_ORDER_CODE_ACCEPTED;
902636
-    } else {
902636
         set_sigp_status(si, SIGP_STAT_NOT_RUNNING);
902636
+    } else {
902636
+        si->cc = SIGP_CC_ORDER_CODE_ACCEPTED;
902636
     }
902636
 }
902636
 
902636
-- 
902636
2.27.0
902636