diff options
author | Jens Freimann <jfrei@linux.vnet.ibm.com> | 2015-03-02 17:44:24 +0100 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2015-05-08 10:36:19 +0200 |
commit | 3cda44f7bae5c9feddc11630ba6eecb2e3bed425 (patch) | |
tree | a335b5fcfd32f32d675e98fae220a934cca26f02 /target-s390x/cpu.c | |
parent | 46c804def4bda2491c546e8e33b86fe4981e4b68 (diff) | |
download | qemu-3cda44f7bae5c9feddc11630ba6eecb2e3bed425.zip |
s390x/kvm: migrate vcpu interrupt state
This patch adds support to migrate vcpu interrupts.
We use ioctl KVM_S390_GET_IRQ_STATE and _SET_IRQ_STATE
to get/set the complete interrupt state for a vcpu.
Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Signed-off-by: Jens Freimann <jfrei@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'target-s390x/cpu.c')
-rw-r--r-- | target-s390x/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-s390x/cpu.c b/target-s390x/cpu.c index e0537fa222..d2f9836e86 100644 --- a/target-s390x/cpu.c +++ b/target-s390x/cpu.c @@ -213,6 +213,7 @@ static void s390_cpu_finalize(Object *obj) S390CPU *cpu = S390_CPU(obj); qemu_unregister_reset(s390_cpu_machine_reset_cb, cpu); + g_free(cpu->irqstate); #endif } |