Merge tag 'x86-urgent-2020-07-19' of...
Merge tag 'x86-urgent-2020-07-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip into master Pull x86 fixes from Thomas Gleixner: "A pile of fixes for x86: - Fix the I/O bitmap invalidation on XEN PV, which was overlooked in the recent ioperm/iopl rework. This caused the TSS and XEN's I/O bitmap to get out of sync. - Use the proper vectors for HYPERV. - Make disabling of stack protector for the entry code work with GCC builds which enable stack protector by default. Removing the option is not sufficient, it needs an explicit -fno-stack-protector to shut it off. - Mark check_user_regs() noinstr as it is called from noinstr code. The missing annotation causes it to be placed in the text section which makes it instrumentable. - Add the missing interrupt disable in exc_alignment_check() - Fixup a XEN_PV build dependency in the 32bit entry code - A few fixes to make the Clang integrated assembler happy - Move EFI stub build to the right place for out of tree builds - Make prepare_exit_to_usermode() static. It's not longer called from ASM code" * tag 'x86-urgent-2020-07-19' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/boot: Don't add the EFI stub to targets x86/entry: Actually disable stack protector x86/ioperm: Fix io bitmap invalidation on Xen PV x86: math-emu: Fix up 'cmp' insn for clang ias x86/entry: Fix vectors to IDTENTRY_SYSVEC for CONFIG_HYPERV x86/entry: Add compatibility with IAS x86/entry/common: Make prepare_exit_to_usermode() static x86/entry: Mark check_user_regs() noinstr x86/traps: Disable interrupts in exc_aligment_check() x86/entry/32: Fix XEN_PV build dependency
No related branches found
No related tags found
Showing
- arch/x86/boot/compressed/Makefile 2 additions, 2 deletionsarch/x86/boot/compressed/Makefile
- arch/x86/entry/Makefile 11 additions, 3 deletionsarch/x86/entry/Makefile
- arch/x86/entry/common.c 2 additions, 2 deletionsarch/x86/entry/common.c
- arch/x86/include/asm/idtentry.h 10 additions, 12 deletionsarch/x86/include/asm/idtentry.h
- arch/x86/include/asm/io_bitmap.h 16 additions, 0 deletionsarch/x86/include/asm/io_bitmap.h
- arch/x86/include/asm/paravirt.h 5 additions, 0 deletionsarch/x86/include/asm/paravirt.h
- arch/x86/include/asm/paravirt_types.h 1 addition, 0 deletionsarch/x86/include/asm/paravirt_types.h
- arch/x86/kernel/paravirt.c 2 additions, 1 deletionarch/x86/kernel/paravirt.c
- arch/x86/kernel/process.c 2 additions, 16 deletionsarch/x86/kernel/process.c
- arch/x86/kernel/traps.c 2 additions, 0 deletionsarch/x86/kernel/traps.c
- arch/x86/math-emu/wm_sqrt.S 1 addition, 1 deletionarch/x86/math-emu/wm_sqrt.S
- arch/x86/xen/enlighten_pv.c 12 additions, 0 deletionsarch/x86/xen/enlighten_pv.c
Please register or sign in to comment