diff options
author | Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com> | 2012-08-03 03:39:59 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-08-06 09:04:53 -0400 |
commit | 83f09228d068911ac8797ae8d6febef886698936 (patch) | |
tree | c4bfc135604c56f91594c44d56dcf03632d0a3e5 /virt | |
parent | 950e95097b1c6573ef5e21061ccb56964278c45b (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 'virt')
-rw-r--r-- | virt/kvm/kvm_main.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index 988b2339d846..eb73e5f13678 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c | |||
@@ -928,24 +928,6 @@ int is_error_page(struct page *page) | |||
928 | } | 928 | } |
929 | EXPORT_SYMBOL_GPL(is_error_page); | 929 | EXPORT_SYMBOL_GPL(is_error_page); |
930 | 930 | ||
931 | int is_error_pfn(pfn_t pfn) | ||
932 | { | ||
933 | return IS_ERR_VALUE(pfn); | ||
934 | } | ||
935 | EXPORT_SYMBOL_GPL(is_error_pfn); | ||
936 | |||
937 | int is_noslot_pfn(pfn_t pfn) | ||
938 | { | ||
939 | return pfn == -ENOENT; | ||
940 | } | ||
941 | EXPORT_SYMBOL_GPL(is_noslot_pfn); | ||
942 | |||
943 | int is_invalid_pfn(pfn_t pfn) | ||
944 | { | ||
945 | return !is_noslot_pfn(pfn) && is_error_pfn(pfn); | ||
946 | } | ||
947 | EXPORT_SYMBOL_GPL(is_invalid_pfn); | ||
948 | |||
949 | struct page *get_bad_page(void) | 931 | struct page *get_bad_page(void) |
950 | { | 932 | { |
951 | return ERR_PTR(-ENOENT); | 933 | return ERR_PTR(-ENOENT); |