aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorXiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>2012-08-03 03:39:59 -0400
committerAvi Kivity <avi@redhat.com>2012-08-06 09:04:53 -0400
commit83f09228d068911ac8797ae8d6febef886698936 (patch)
treec4bfc135604c56f91594c44d56dcf03632d0a3e5 /include/linux
parent950e95097b1c6573ef5e21061ccb56964278c45b (diff)
KVM: inline is_*_pfn functions
These functions are exported and can not inline, move them to kvm_host.h to eliminate the overload of function call Signed-off-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/kvm_host.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
index b2cf3109822e..19d91ceaf5e6 100644
--- a/include/linux/kvm_host.h
+++ b/include/linux/kvm_host.h
@@ -21,6 +21,7 @@
21#include <linux/slab.h> 21#include <linux/slab.h>
22#include <linux/rcupdate.h> 22#include <linux/rcupdate.h>
23#include <linux/ratelimit.h> 23#include <linux/ratelimit.h>
24#include <linux/err.h>
24#include <asm/signal.h> 25#include <asm/signal.h>
25 26
26#include <linux/kvm.h> 27#include <linux/kvm.h>
@@ -52,6 +53,21 @@
52#define KVM_PFN_ERR_HWPOISON (-EHWPOISON) 53#define KVM_PFN_ERR_HWPOISON (-EHWPOISON)
53#define KVM_PFN_ERR_BAD (-ENOENT) 54#define KVM_PFN_ERR_BAD (-ENOENT)
54 55
56static inline int is_error_pfn(pfn_t pfn)
57{
58 return IS_ERR_VALUE(pfn);
59}
60
61static inline int is_noslot_pfn(pfn_t pfn)
62{
63 return pfn == -ENOENT;
64}
65
66static inline int is_invalid_pfn(pfn_t pfn)
67{
68 return !is_noslot_pfn(pfn) && is_error_pfn(pfn);
69}
70
55/* 71/*
56 * vcpu->requests bit members 72 * vcpu->requests bit members
57 */ 73 */
@@ -396,9 +412,6 @@ id_to_memslot(struct kvm_memslots *slots, int id)
396extern struct page *bad_page; 412extern struct page *bad_page;
397 413
398int is_error_page(struct page *page); 414int is_error_page(struct page *page);
399int is_error_pfn(pfn_t pfn);
400int is_noslot_pfn(pfn_t pfn);
401int is_invalid_pfn(pfn_t pfn);
402int kvm_is_error_hva(unsigned long addr); 415int kvm_is_error_hva(unsigned long addr);
403int kvm_set_memory_region(struct kvm *kvm, 416int kvm_set_memory_region(struct kvm *kvm,
404 struct kvm_userspace_memory_region *mem, 417 struct kvm_userspace_memory_region *mem,