Re: [patch V6 20/37] x86/irq/64: Provide handle_irq()

2020-05-19 Thread Andy Lutomirski
On Fri, May 15, 2020 at 5:10 PM Thomas Gleixner wrote: > > > To consolidate the interrupt entry/exit code vs. the other exceptions > provide handle_irq() (similar to 32bit) to move the interrupt stack > switching to C code. That allows to consolidate the entry exit handling by > reusing the

[patch V6 20/37] x86/irq/64: Provide handle_irq()

2020-05-15 Thread Thomas Gleixner
To consolidate the interrupt entry/exit code vs. the other exceptions provide handle_irq() (similar to 32bit) to move the interrupt stack switching to C code. That allows to consolidate the entry exit handling by reusing the idtentry machinery both in ASM and C. Signed-off-by: Thomas Gleixner