Skip to content

Commit

Permalink
x86/entry/32: Add missing ASM_CLAC to general_protection entry
Browse files Browse the repository at this point in the history
All exception entry points must have ASM_CLAC right at the
beginning. The general_protection entry is missing one.

Fixes: e59d1b0 ("x86-32, smap: Add STAC/CLAC instructions to 32-bit kernel entry")
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
Reviewed-by: Alexandre Chartre <alexandre.chartre@oracle.com>
Reviewed-by: Andy Lutomirski <luto@kernel.org>
Cc: stable@vger.kernel.org
Link: https://lkml.kernel.org/r/20200225220216.219537887@linutronix.de
  • Loading branch information
Thomas Gleixner committed Feb 27, 2020
1 parent f8788d8 commit 3d51507
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arch/x86/entry/entry_32.S
Original file line number Diff line number Diff line change
Expand Up @@ -1694,6 +1694,7 @@ SYM_CODE_START(int3)
SYM_CODE_END(int3)

SYM_CODE_START(general_protection)
ASM_CLAC
pushl $do_general_protection
jmp common_exception
SYM_CODE_END(general_protection)
Expand Down

0 comments on commit 3d51507

Please sign in to comment.