diff --git a/arch/s390/mm/fault.c b/arch/s390/mm/fault.c index ac4c78546d97..4b4bb884a89d 100644 --- a/arch/s390/mm/fault.c +++ b/arch/s390/mm/fault.c @@ -430,12 +430,13 @@ error: handle_fault_error_nolock(regs, 0); else do_sigsegv(regs, SEGV_MAPERR); - } else if (fault & VM_FAULT_SIGBUS) { + } else if (fault & (VM_FAULT_SIGBUS | VM_FAULT_HWPOISON)) { if (!user_mode(regs)) handle_fault_error_nolock(regs, 0); else do_sigbus(regs); } else { + pr_emerg("Unexpected fault flags: %08x\n", fault); BUG(); } }