KVM: introduce KVM_PFN_ERR_BAD
authorXiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Fri, 3 Aug 2012 07:39:19 +0000 (15:39 +0800)
committerAvi Kivity <avi@redhat.com>
Mon, 6 Aug 2012 13:04:52 +0000 (16:04 +0300)
Then, remove get_bad_pfn

Signed-off-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
include/linux/kvm_host.h
virt/kvm/kvm_main.c

index 840f44a096c96645eeb3db70f0a86177beee8a04..b2cf3109822ead1475a606e512ad147314cdfe42 100644 (file)
@@ -50,6 +50,7 @@
 
 #define KVM_PFN_ERR_FAULT      (-EFAULT)
 #define KVM_PFN_ERR_HWPOISON   (-EHWPOISON)
+#define KVM_PFN_ERR_BAD                (-ENOENT)
 
 /*
  * vcpu->requests bit members
index 7fce2d5787ae6c04297450a12d474df30472293f..988b2339d84649d675497e00f9219d9ab8cbfeef 100644 (file)
@@ -934,11 +934,6 @@ int is_error_pfn(pfn_t pfn)
 }
 EXPORT_SYMBOL_GPL(is_error_pfn);
 
-static pfn_t get_bad_pfn(void)
-{
-       return -ENOENT;
-}
-
 int is_noslot_pfn(pfn_t pfn)
 {
        return pfn == -ENOENT;
@@ -1143,7 +1138,7 @@ static pfn_t __gfn_to_pfn(struct kvm *kvm, gfn_t gfn, bool atomic, bool *async,
 
        addr = gfn_to_hva(kvm, gfn);
        if (kvm_is_error_hva(addr))
-               return get_bad_pfn();
+               return KVM_PFN_ERR_BAD;
 
        return hva_to_pfn(addr, atomic, async, write_fault, writable);
 }