Skip to content

Commit

Permalink
KVM: async_pf: Add missing call for async page present
Browse files Browse the repository at this point in the history
Commit KVM: async_pf: Provide additional direct page notification
missed the call from kvm_check_async_pf_completion to the new introduced function.

Reported-by: Paolo Bonzini <[email protected]>
Signed-off-by: Dominik Dingel <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
  • Loading branch information
Dominik Dingel authored and bonzini committed Feb 4, 2014
1 parent f244d91 commit 1179ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virt/kvm/async_pf.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu)
spin_unlock(&vcpu->async_pf.lock);

kvm_arch_async_page_ready(vcpu, work);
kvm_arch_async_page_present(vcpu, work);
kvm_async_page_present_async(vcpu, work);

list_del(&work->queue);
vcpu->async_pf.queued--;
Expand Down

0 comments on commit 1179ba5

Please sign in to comment.