| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- From 5ba2d2eca16a62a64166661ea849c4916ae2f44f Mon Sep 17 00:00:00 2001
- From: Josh Poimboeuf <[email protected]>
- Date: Mon, 18 Sep 2017 21:43:32 -0500
- Subject: [PATCH 054/242] x86/head: Remove unused 'bad_address' code
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- CVE-2017-5754
- It's no longer possible for this code to be executed, so remove it.
- Signed-off-by: Josh Poimboeuf <[email protected]>
- Cc: Andy Lutomirski <[email protected]>
- Cc: Boris Ostrovsky <[email protected]>
- Cc: Jiri Slaby <[email protected]>
- Cc: Juergen Gross <[email protected]>
- Cc: Linus Torvalds <[email protected]>
- Cc: Peter Zijlstra <[email protected]>
- Cc: Thomas Gleixner <[email protected]>
- Link: http://lkml.kernel.org/r/32a46fe92d2083700599b36872b26e7dfd7b7965.1505764066.git.jpoimboe@redhat.com
- Signed-off-by: Ingo Molnar <[email protected]>
- (cherry picked from commit a8b88e84d124bc92c4808e72b8b8c0e0bb538630)
- Signed-off-by: Andy Whitcroft <[email protected]>
- Signed-off-by: Kleber Sacilotto de Souza <[email protected]>
- (cherry picked from commit d790ff35a3a49ef0942a3484f024551433fd2ddf)
- Signed-off-by: Fabian Grünbichler <[email protected]>
- ---
- arch/x86/kernel/head_64.S | 3 ---
- 1 file changed, 3 deletions(-)
- diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S
- index 627c798b2f15..37d9905d38d6 100644
- --- a/arch/x86/kernel/head_64.S
- +++ b/arch/x86/kernel/head_64.S
- @@ -249,9 +249,6 @@ ENDPROC(start_cpu0)
- .quad init_thread_union + THREAD_SIZE - SIZEOF_PTREGS
- __FINITDATA
-
- -bad_address:
- - jmp bad_address
- -
- __INIT
- ENTRY(early_idt_handler_array)
- i = 0
- --
- 2.14.2
|