diff options
| author | Jan Kiszka <jan.kiszka@siemens.com> | 2009-05-02 00:29:37 +0200 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-05-22 10:50:34 -0500 |
| commit | d33a1810d7f558dd1d486bc84f1cf8f96c982e2d (patch) | |
| tree | f41931bb085bf30f46539d2e053c77d7856b44a8 /vl.c | |
| parent | 8217606e6edb49591b4a6fd5a0d1229cebe470a9 (diff) | |
| download | focaccia-qemu-d33a1810d7f558dd1d486bc84f1cf8f96c982e2d.tar.gz focaccia-qemu-d33a1810d7f558dd1d486bc84f1cf8f96c982e2d.zip | |
kvm: Rework VCPU reset
Use standard callback with highest order to synchronize VCPU on reset after all device callbacks were execute. This allows to remove the special kvm hook in qemu_system_reset. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vl.c')
| -rw-r--r-- | vl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/vl.c b/vl.c index 9d7ee7adc7..2c1f0e0bd2 100644 --- a/vl.c +++ b/vl.c @@ -3659,8 +3659,6 @@ void qemu_system_reset(void) for(re = first_reset_entry; re != NULL; re = re->next) { re->func(re->opaque); } - if (kvm_enabled()) - kvm_sync_vcpus(); } void qemu_system_reset_request(void) |