Re: [tip: x86/entry] x86/entry: Convert Divide Error to IDTENTRY

From: Thomas Gleixner
Date: Sun Oct 11 2020 - 13:50:50 EST


On Sun, Oct 11 2020 at 17:25, Dmitry Vyukov wrote:
> On Tue, May 19, 2020 at 9:59 PM tip-bot2 for Thomas Gleixner
> <tip-bot2@xxxxxxxxxxxxx> wrote:
>> The following commit has been merged into the x86/entry branch of tip:
>>
>> -DO_ERROR(X86_TRAP_DE, SIGFPE, FPE_INTDIV, IP, "divide error", divide_error)
>>
>> +DEFINE_IDTENTRY(exc_divide_error)
>> +{
>> + do_error_trap(regs, 0, "divide_error", X86_TRAP_DE, SIGFPE,
>> + FPE_INTDIV, error_get_trap_addr(regs));
>> +}
>
> I suppose this is a copy-paste typo and was supposed to be "divide
> error", right?

Yeah. That was definitely unintentional.