FROMLIST: arm64: add a workaround for GNU gold with ARM64_MODULE_PLTS
authorSami Tolvanen <samitolvanen@google.com>
Fri, 4 Aug 2017 19:44:35 +0000 (12:44 -0700)
committerSami Tolvanen <samitolvanen@google.com>
Thu, 26 Apr 2018 23:03:36 +0000 (16:03 -0700)
All current versions of GNU gold crash when linking kernel modules
with ARM64_MODULE_PLTS due to a known bug:

  https://sourceware.org/bugzilla/show_bug.cgi?id=14592

To work around the problem, this change removes NOLOAD from .plt
and .init.plt.

Bug: 62093296
Bug: 67506682
Change-Id: Ie59c15dc2e60859361b5c7dac5a515eabf8bb005
(am from https://patchwork.kernel.org/patch/10085781/)
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
arch/arm64/kernel/module.lds

index 22e36a21c1134576eb58a9209d75f2c6b2f09f85..99eb7c292494191b41a3d7dfa739b502eb64e80a 100644 (file)
@@ -1,5 +1,5 @@
 SECTIONS {
-       .plt (NOLOAD) : { BYTE(0) }
-       .init.plt (NOLOAD) : { BYTE(0) }
-       .text.ftrace_trampoline (NOLOAD) : { BYTE(0) }
+       .plt : { BYTE(0) }
+       .init.plt : { BYTE(0) }
+       .text.ftrace_trampoline : { BYTE(0) }
 }