mirror of https://github.com/xemu-project/xemu.git
s390x: sigp: Fix sense running reporting
The logic was inverted and reported running if the cpu was stopped.
Let's fix that.
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
Fixes: d1b468bc88
("s390x/tcg: implement SIGP SENSE RUNNING STATUS")
Reviewed-by: David Hildenbrand <david@redhat.com>
Message-Id: <20200124134818.9981-1-frankja@linux.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
This commit is contained in:
parent
3e0209bbd6
commit
4103500e2f
|
@ -348,9 +348,9 @@ static void sigp_sense_running(S390CPU *dst_cpu, SigpInfo *si)
|
||||||
|
|
||||||
/* If halted (which includes also STOPPED), it is not running */
|
/* If halted (which includes also STOPPED), it is not running */
|
||||||
if (CPU(dst_cpu)->halted) {
|
if (CPU(dst_cpu)->halted) {
|
||||||
si->cc = SIGP_CC_ORDER_CODE_ACCEPTED;
|
|
||||||
} else {
|
|
||||||
set_sigp_status(si, SIGP_STAT_NOT_RUNNING);
|
set_sigp_status(si, SIGP_STAT_NOT_RUNNING);
|
||||||
|
} else {
|
||||||
|
si->cc = SIGP_CC_ORDER_CODE_ACCEPTED;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue