diff options
author | Sheng Yang <sheng@linux.intel.com> | 2009-01-05 21:03:02 -0500 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-02-14 19:47:36 -0500 |
commit | ad8ba2cd44d4d39fb3fe55d5dcc565b19fc3a7fb (patch) | |
tree | 74dfd501fc541b7d55eecec7b9469f1db8225507 /virt/kvm/kvm_main.c | |
parent | 85db06e514422ae429b5f85742d8111b70bd56f3 (diff) |
KVM: Add kvm_arch_sync_events to sync with asynchronize events
kvm_arch_sync_events is introduced to quiet down all other events may happen
contemporary with VM destroy process, like IRQ handler and work struct for
assigned device.
For kvm_arch_sync_events is called at the very beginning of kvm_destroy_vm(), so
the state of KVM here is legal and can provide a environment to quiet down other
events.
Signed-off-by: Sheng Yang <sheng@linux.intel.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'virt/kvm/kvm_main.c')
-rw-r--r-- | virt/kvm/kvm_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index 0b6f2f71271f..68e3f1ec1674 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c | |||
@@ -891,6 +891,7 @@ static void kvm_destroy_vm(struct kvm *kvm) | |||
891 | { | 891 | { |
892 | struct mm_struct *mm = kvm->mm; | 892 | struct mm_struct *mm = kvm->mm; |
893 | 893 | ||
894 | kvm_arch_sync_events(kvm); | ||
894 | spin_lock(&kvm_lock); | 895 | spin_lock(&kvm_lock); |
895 | list_del(&kvm->vm_list); | 896 | list_del(&kvm->vm_list); |
896 | spin_unlock(&kvm_lock); | 897 | spin_unlock(&kvm_lock); |