diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2009-12-23 11:35:26 -0500 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2010-03-01 10:35:45 -0500 |
commit | 79fac95ecfa3969aab8119d37ccd7226165f933a (patch) | |
tree | 4103169c7fd2b7fb1ba95dae2db6b3f365476b9d /arch/ia64/kvm | |
parent | f656ce0185cabbbb0cf96877306879661297c7ad (diff) |
KVM: convert slots_lock to a mutex
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/ia64/kvm')
-rw-r--r-- | arch/ia64/kvm/kvm-ia64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c index d5e384641275..e6ac549f8d55 100644 --- a/arch/ia64/kvm/kvm-ia64.c +++ b/arch/ia64/kvm/kvm-ia64.c | |||
@@ -1834,7 +1834,7 @@ int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, | |||
1834 | struct kvm_memory_slot *memslot; | 1834 | struct kvm_memory_slot *memslot; |
1835 | int is_dirty = 0; | 1835 | int is_dirty = 0; |
1836 | 1836 | ||
1837 | down_write(&kvm->slots_lock); | 1837 | mutex_lock(&kvm->slots_lock); |
1838 | spin_lock(&kvm->arch.dirty_log_lock); | 1838 | spin_lock(&kvm->arch.dirty_log_lock); |
1839 | 1839 | ||
1840 | r = kvm_ia64_sync_dirty_log(kvm, log); | 1840 | r = kvm_ia64_sync_dirty_log(kvm, log); |
@@ -1854,7 +1854,7 @@ int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, | |||
1854 | } | 1854 | } |
1855 | r = 0; | 1855 | r = 0; |
1856 | out: | 1856 | out: |
1857 | up_write(&kvm->slots_lock); | 1857 | mutex_unlock(&kvm->slots_lock); |
1858 | spin_unlock(&kvm->arch.dirty_log_lock); | 1858 | spin_unlock(&kvm->arch.dirty_log_lock); |
1859 | return r; | 1859 | return r; |
1860 | } | 1860 | } |