5d691b34beca3280cd4ff8ca7318a67d1f53246c
[gentoo.git] /
1 From b9de21ef51a7ceab7122a707c188602eae22c4ee Mon Sep 17 00:00:00 2001
2 From: Chris Clayton <chris2553@googlemail.com>
3 Date: Mon, 20 Aug 2018 12:00:31 +0100
4 Subject: kexec: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
5
6 In response to a change in binutils, commit b21ebf2fb4c
7 (x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
8 the linux kernel during the 4.16 development cycle and has
9 since been backported to earlier stable kernel series. The
10 change results in the failure message in $SUBJECT when
11 rebooting via kexec.
12
13 Fix this by replicating the change in kexec.
14
15 Signed-off-by: Chris Clayton <chris2553@googlemail.com>
16 Acked-by: Baoquan He <bhe@redhat.com>
17 Tested-by: Bhupesh Sharma <bhsharma@redhat.com>
18 Acked-by: Bhupesh Sharma <bhsharma@redhat.com>
19 Signed-off-by: Simon Horman <horms@verge.net.au>
20 ---
21  kexec/arch/x86_64/kexec-elf-rel-x86_64.c | 1 +
22  1 file changed, 1 insertion(+)
23
24 diff --git a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
25 index 7fdde73..db85b44 100644
26 --- a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
27 +++ b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
28 @@ -79,6 +79,7 @@ void machine_apply_elf_rel(struct mem_ehdr *UNUSED(ehdr),
29                         goto overflow;
30                 break;
31         case R_X86_64_PC32: 
32 +       case R_X86_64_PLT32:
33                 *(uint32_t *)location = value - address;
34                 break;
35         default:
36 -- 
37 cgit 1.2-0.3.lf.el7
38