Skip to content

Commit

Permalink
KVM: MCE: Send SRAR SIGBUS directly
Browse files Browse the repository at this point in the history
Originally, SRAR SIGBUS is sent to QEMU-KVM via touching the poisoned
page. But commit 9605456 prevents the
signal from being sent. So now the signal is sent via
force_sig_info_fault directly.

[marcelo: use send_sig_info instead]

Reported-by: Dean Nelson <[email protected]>
Signed-off-by: Huang Ying <[email protected]>
Signed-off-by: Marcelo Tosatti <[email protected]>
  • Loading branch information
yhuang-intel authored and avikivity committed Oct 24, 2010
1 parent 5854dbc commit 77db5cb
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions arch/x86/kvm/mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2251,22 +2251,24 @@ static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
return pt_write;
}

static void kvm_send_hwpoison_signal(struct kvm *kvm, gfn_t gfn)
static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
{
char buf[1];
void __user *hva;
int r;
siginfo_t info;

info.si_signo = SIGBUS;
info.si_errno = 0;
info.si_code = BUS_MCEERR_AR;
info.si_addr = (void __user *)address;
info.si_addr_lsb = PAGE_SHIFT;

/* Touch the page, so send SIGBUS */
hva = (void __user *)gfn_to_hva(kvm, gfn);
r = copy_from_user(buf, hva, 1);
send_sig_info(SIGBUS, &info, tsk);
}

static int kvm_handle_bad_page(struct kvm *kvm, gfn_t gfn, pfn_t pfn)
{
kvm_release_pfn_clean(pfn);
if (is_hwpoison_pfn(pfn)) {
kvm_send_hwpoison_signal(kvm, gfn);
kvm_send_hwpoison_signal(gfn_to_hva(kvm, gfn), current);
return 0;
} else if (is_fault_pfn(pfn))
return -EFAULT;
Expand Down

0 comments on commit 77db5cb

Please sign in to comment.