Linus,

please pull the latest x86/urgent branch from:

   git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 
x86-urgent-2020-10-25

up to:  20802fef73a5: x86/traps: Fix #DE Oops message regression


Restore the original #DE Oops message so tools which parse crash or dmesg
find what they expect.

Thanks,

        tglx

------------------>
Thomas Gleixner (1):
      x86/traps: Fix #DE Oops message regression


 arch/x86/kernel/traps.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
index 81a2fb711091..316ce1c09e84 100644
--- a/arch/x86/kernel/traps.c
+++ b/arch/x86/kernel/traps.c
@@ -195,7 +195,7 @@ static __always_inline void __user 
*error_get_trap_addr(struct pt_regs *regs)
 
 DEFINE_IDTENTRY(exc_divide_error)
 {
-       do_error_trap(regs, 0, "divide_error", X86_TRAP_DE, SIGFPE,
+       do_error_trap(regs, 0, "divide error", X86_TRAP_DE, SIGFPE,
                      FPE_INTDIV, error_get_trap_addr(regs));
 }
 

Reply via email to