Commit 00cf8baf authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

x86/entry/64: Simplify idtentry_body



All C functions which do not have an error code have been converted to the
new IDTENTRY interface which does not expect an error code in the
arguments. Spare the XORL.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
Acked-by: default avatarAndy Lutomirski <luto@kernel.org>
Link: https://lore.kernel.org/r/20200521202118.145811853@linutronix.de
parent 2f6474e4
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -531,8 +531,6 @@ SYM_CODE_END(spurious_entries_start)
	.if \has_error_code == 1
		movq	ORIG_RAX(%rsp), %rsi	/* get error code into 2nd argument*/
		movq	$-1, ORIG_RAX(%rsp)	/* no syscall to restart */
	.else
		xorl	%esi, %esi		/* Clear the error code */
	.endif

	.if \vector == X86_TRAP_PF