summaryrefslogtreecommitdiffstats
path: root/virt/kvm/async_pf.c
diff options
context:
space:
mode:
authorXiao Guangrong2012-08-03 09:41:22 +0200
committerAvi Kivity2012-08-06 15:04:55 +0200
commit6cede2e6794be6b0649f62d3681e0c4aff5a9270 (patch)
treeb05fdcfd0db7974c7ed7f036d07520ac4c12202f /virt/kvm/async_pf.c
parentKVM: remove the unused declare (diff)
downloadkernel-qcow2-linux-6cede2e6794be6b0649f62d3681e0c4aff5a9270.tar.gz
kernel-qcow2-linux-6cede2e6794be6b0649f62d3681e0c4aff5a9270.tar.xz
kernel-qcow2-linux-6cede2e6794be6b0649f62d3681e0c4aff5a9270.zip
KVM: introduce KVM_ERR_PTR_BAD_PAGE
It is used to eliminate the overload of function call and cleanup the code Signed-off-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'virt/kvm/async_pf.c')
-rw-r--r--virt/kvm/async_pf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/virt/kvm/async_pf.c b/virt/kvm/async_pf.c
index 79722782d9d7..56f553391896 100644
--- a/virt/kvm/async_pf.c
+++ b/virt/kvm/async_pf.c
@@ -203,7 +203,7 @@ int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu)
if (!work)
return -ENOMEM;
- work->page = get_bad_page();
+ work->page = KVM_ERR_PTR_BAD_PAGE;
INIT_LIST_HEAD(&work->queue); /* for list_del to work */
spin_lock(&vcpu->async_pf.lock);