You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
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>
This commit is contained in:
committed by
Avi Kivity
parent
950e95097b
commit
83f09228d0
@@ -928,24 +928,6 @@ int is_error_page(struct page *page)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(is_error_page);
|
||||
|
||||
int is_error_pfn(pfn_t pfn)
|
||||
{
|
||||
return IS_ERR_VALUE(pfn);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(is_error_pfn);
|
||||
|
||||
int is_noslot_pfn(pfn_t pfn)
|
||||
{
|
||||
return pfn == -ENOENT;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(is_noslot_pfn);
|
||||
|
||||
int is_invalid_pfn(pfn_t pfn)
|
||||
{
|
||||
return !is_noslot_pfn(pfn) && is_error_pfn(pfn);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(is_invalid_pfn);
|
||||
|
||||
struct page *get_bad_page(void)
|
||||
{
|
||||
return ERR_PTR(-ENOENT);
|
||||
|
||||
Reference in New Issue
Block a user