Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329837
b: refs/heads/master
c: 950e950
h: refs/heads/master
i:
  329835: 9797375
v: v3
  • Loading branch information
Xiao Guangrong authored and Avi Kivity committed Aug 6, 2012
1 parent e6c91fe commit 26ce37a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e6c1502b3f933ace20c711ce34ab696f5a67086d
refs/heads/master: 950e95097b1c6573ef5e21061ccb56964278c45b
1 change: 1 addition & 0 deletions trunk/include/linux/kvm_host.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 1 addition & 6 deletions trunk/virt/kvm/kvm_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit 26ce37a

Please sign in to comment.