]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
x86/asm/entry/64: Remove pointless jump to irq_return
authorAndy Lutomirski <luto@kernel.org>
Thu, 4 Jun 2015 20:24:29 +0000 (13:24 -0700)
committerIngo Molnar <mingo@kernel.org>
Fri, 5 Jun 2015 10:42:41 +0000 (12:42 +0200)
INTERRUPT_RETURN turns into a jmp instruction.  There's no need
for extra indirection.

Signed-off-by: Andy Lutomirski <luto@kernel.org>
Cc: <linux-kernel@vger.kernel.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/2f2318653dbad284a59311f13f08cea71298fd7c.1433449436.git.luto@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/entry/entry_64.S

index f7380ea75777d0b030b61acaa0a40ae4eb36d9fd..31770662b94072db62559260a78e7851f02c4403 100644 (file)
@@ -663,8 +663,6 @@ retint_kernel:
 restore_c_regs_and_iret:
        RESTORE_C_REGS
        REMOVE_PT_GPREGS_FROM_STACK 8
-
-irq_return:
        INTERRUPT_RETURN
 
 ENTRY(native_iret)
@@ -1432,7 +1430,7 @@ nmi_restore:
 
        /* Clear the NMI executing stack variable */
        movq $0, 5*8(%rsp)
-       jmp irq_return
+       INTERRUPT_RETURN
 END(nmi)
 
 ENTRY(ignore_sysret)