aboutsummaryrefslogtreecommitdiff
path: root/target/s390x/kvm.c
diff options
context:
space:
mode:
authorDavid Hildenbrand <david@redhat.com>2017-09-28 22:36:56 +0200
committerCornelia Huck <cohuck@redhat.com>2017-10-20 13:32:10 +0200
commit3047f8b549a5af0027d7921ed9dbeba233895ab9 (patch)
tree2e000ed2093538c7b2f3f082585d7b849ccff807 /target/s390x/kvm.c
parent74b4c74d5efb0a489bdf0acc5b5d0197167e7649 (diff)
downloadqemu-3047f8b549a5af0027d7921ed9dbeba233895ab9.zip
qemu-3047f8b549a5af0027d7921ed9dbeba233895ab9.tar.gz
qemu-3047f8b549a5af0027d7921ed9dbeba233895ab9.tar.bz2
s390x/kvm: factor out actual handling of STOP interrupts
For KVM, the KVM module decides when a STOP can be performed (when the STOP interrupt can be processed). Factor it out so we can use it later for TCG. Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20170928203708.9376-19-david@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x/kvm.c')
-rw-r--r--target/s390x/kvm.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/target/s390x/kvm.c b/target/s390x/kvm.c
index b2e3655..88f27d7 100644
--- a/target/s390x/kvm.c
+++ b/target/s390x/kvm.c
@@ -1634,13 +1634,7 @@ static int handle_intercept(S390CPU *cpu)
r = EXCP_HALTED;
break;
case ICPT_CPU_STOP:
- if (s390_cpu_set_state(CPU_STATE_STOPPED, cpu) == 0) {
- qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN);
- }
- if (cpu->env.sigp_order == SIGP_STOP_STORE_STATUS) {
- s390_store_status(cpu, S390_STORE_STATUS_DEF_ADDR, true);
- }
- cpu->env.sigp_order = 0;
+ do_stop_interrupt(&cpu->env);
r = EXCP_HALTED;
break;
case ICPT_OPEREXC: