diff options
author | Peter Zijlstra <[email protected]> | 2022-03-08 16:30:22 +0100 |
---|---|---|
committer | Peter Zijlstra <[email protected]> | 2022-03-15 10:32:34 +0100 |
commit | 8b87d8cec1b31ea710568ae49ba5f5146318da0d (patch) | |
tree | d66a56f82b2e643c95e46710bdbe69064ef32178 /arch/x86/xen/xen-asm.S | |
parent | 6cf3e4c0d29102c74aca1ce0c1710be9d02e440e (diff) |
x86/entry,xen: Early rewrite of restore_regs_and_return_to_kernel()
By doing an early rewrite of 'jmp native_iret` in
restore_regs_and_return_to_kernel() we can get rid of the last
INTERRUPT_RETURN user and paravirt_iret.
Suggested-by: Andrew Cooper <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Acked-by: Josh Poimboeuf <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'arch/x86/xen/xen-asm.S')
-rw-r--r-- | arch/x86/xen/xen-asm.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/xen/xen-asm.S b/arch/x86/xen/xen-asm.S index e730e6200e64..ee17b94e3fc0 100644 --- a/arch/x86/xen/xen-asm.S +++ b/arch/x86/xen/xen-asm.S @@ -189,6 +189,7 @@ hypercall_iret = hypercall_page + __HYPERVISOR_iret * 32 */ SYM_CODE_START(xen_iret) UNWIND_HINT_EMPTY + ANNOTATE_NOENDBR pushq $0 jmp hypercall_iret SYM_CODE_END(xen_iret) |