Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329816
b: refs/heads/master
c: 2b4b5af
h: refs/heads/master
v: v3
  • Loading branch information
Xiao Guangrong authored and Avi Kivity committed Jul 26, 2012
1 parent 57adba1 commit 6f190ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3b2bd2f800ba9488d9ad493216a0c07d71055b56
refs/heads/master: 2b4b5af8f8e7296bc27c52023ab6bb8f53db3a2b
4 changes: 2 additions & 2 deletions trunk/virt/kvm/async_pf.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu)
typeof(*work), link);
list_del(&work->link);
if (work->page)
put_page(work->page);
kvm_release_page_clean(work->page);
kmem_cache_free(async_pf_cache, work);
}
spin_unlock(&vcpu->async_pf.lock);
Expand All @@ -139,7 +139,7 @@ void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu)
list_del(&work->queue);
vcpu->async_pf.queued--;
if (work->page)
put_page(work->page);
kvm_release_page_clean(work->page);
kmem_cache_free(async_pf_cache, work);
}
}
Expand Down

0 comments on commit 6f190ea

Please sign in to comment.