aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/mmu.c
diff options
context:
space:
mode:
authorXiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>2012-08-03 03:38:36 -0400
committerAvi Kivity <avi@redhat.com>2012-08-06 09:04:52 -0400
commite6c1502b3f933ace20c711ce34ab696f5a67086d (patch)
tree932090452960a599281c3cde96c59917d258f891 /arch/x86/kvm/mmu.c
parent6c8ee57be9350c5c2cafdd6a99d0462d528676e2 (diff)
KVM: introduce KVM_PFN_ERR_HWPOISON
Then, get_hwpoison_pfn and is_hwpoison_pfn can be removed Signed-off-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/mmu.c')
-rw-r--r--arch/x86/kvm/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index 9cf90c8d5843..d3cdf69da513 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -2649,7 +2649,7 @@ static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *
2649static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, pfn_t pfn) 2649static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, pfn_t pfn)
2650{ 2650{
2651 kvm_release_pfn_clean(pfn); 2651 kvm_release_pfn_clean(pfn);
2652 if (is_hwpoison_pfn(pfn)) { 2652 if (pfn == KVM_PFN_ERR_HWPOISON) {
2653 kvm_send_hwpoison_signal(gfn_to_hva(vcpu->kvm, gfn), current); 2653 kvm_send_hwpoison_signal(gfn_to_hva(vcpu->kvm, gfn), current);
2654 return 0; 2654 return 0;
2655 } 2655 }