summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Robinson <pbrobinson@gmail.com>2016-02-09 16:13:25 +0000
committerPeter Robinson <pbrobinson@gmail.com>2016-02-09 16:13:25 +0000
commitf3d56fd90e7136430ffdf644e876faad6bb672c2 (patch)
tree16baa281bc777703487dbf35f2111a9d9095a148
parent0aec8a810ae657926e533afbe8e13ac523e7d49a (diff)
downloadkernel-f3d56fd90e7136430ffdf644e876faad6bb672c2.tar.gz
kernel-f3d56fd90e7136430ffdf644e876faad6bb672c2.tar.xz
kernel-f3d56fd90e7136430ffdf644e876faad6bb672c2.zip
Fix Power64 kernel build
-rw-r--r--0001-Revert-powerpc-Simplify-module-TOC-handling.patch103
-rw-r--r--kernel.spec7
2 files changed, 109 insertions, 1 deletions
diff --git a/0001-Revert-powerpc-Simplify-module-TOC-handling.patch b/0001-Revert-powerpc-Simplify-module-TOC-handling.patch
new file mode 100644
index 000000000..85438ee80
--- /dev/null
+++ b/0001-Revert-powerpc-Simplify-module-TOC-handling.patch
@@ -0,0 +1,103 @@
+From b66e7caab9e6634dadce2aced6e174c095e1ca0e Mon Sep 17 00:00:00 2001
+From: Peter Robinson <pbrobinson@gmail.com>
+Date: Tue, 9 Feb 2016 15:00:02 +0000
+Subject: [PATCH] Revert "powerpc: Simplify module TOC handling"
+
+This reverts commit c153693d7eb9eeb28478aa2deaaf0b4e7b5ff5e9.
+---
+ arch/powerpc/kernel/misc_64.S | 28 ++++++++++++++++++++++++++++
+ arch/powerpc/kernel/module_64.c | 12 +++---------
+ scripts/mod/modpost.c | 3 +--
+ 3 files changed, 32 insertions(+), 11 deletions(-)
+
+diff --git a/arch/powerpc/kernel/misc_64.S b/arch/powerpc/kernel/misc_64.S
+index f28754c..db475d4 100644
+--- a/arch/powerpc/kernel/misc_64.S
++++ b/arch/powerpc/kernel/misc_64.S
+@@ -701,3 +701,31 @@ _GLOBAL(kexec_sequence)
+ li r5,0
+ blr /* image->start(physid, image->start, 0); */
+ #endif /* CONFIG_KEXEC */
++
++#ifdef CONFIG_MODULES
++#if defined(_CALL_ELF) && _CALL_ELF == 2
++
++#ifdef CONFIG_MODVERSIONS
++.weak __crc_TOC.
++.section "___kcrctab+TOC.","a"
++.globl __kcrctab_TOC.
++__kcrctab_TOC.:
++ .llong __crc_TOC.
++#endif
++
++/*
++ * Export a fake .TOC. since both modpost and depmod will complain otherwise.
++ * Both modpost and depmod strip the leading . so we do the same here.
++ */
++.section "__ksymtab_strings","a"
++__kstrtab_TOC.:
++ .asciz "TOC."
++
++.section "___ksymtab+TOC.","a"
++/* This symbol name is important: it's used by modpost to find exported syms */
++.globl __ksymtab_TOC.
++__ksymtab_TOC.:
++ .llong 0 /* .value */
++ .llong __kstrtab_TOC.
++#endif /* ELFv2 */
++#endif /* MODULES */
+diff --git a/arch/powerpc/kernel/module_64.c b/arch/powerpc/kernel/module_64.c
+index ac64ffd..59663af 100644
+--- a/arch/powerpc/kernel/module_64.c
++++ b/arch/powerpc/kernel/module_64.c
+@@ -326,10 +326,7 @@ static void dedotify_versions(struct modversion_info *vers,
+ }
+ }
+
+-/*
+- * Undefined symbols which refer to .funcname, hack to funcname. Make .TOC.
+- * seem to be defined (value set later).
+- */
++/* Undefined symbols which refer to .funcname, hack to funcname (or .TOC.) */
+ static void dedotify(Elf64_Sym *syms, unsigned int numsyms, char *strtab)
+ {
+ unsigned int i;
+@@ -337,11 +334,8 @@ static void dedotify(Elf64_Sym *syms, unsigned int numsyms, char *strtab)
+ for (i = 1; i < numsyms; i++) {
+ if (syms[i].st_shndx == SHN_UNDEF) {
+ char *name = strtab + syms[i].st_name;
+- if (name[0] == '.') {
+- if (strcmp(name+1, "TOC.") == 0)
+- syms[i].st_shndx = SHN_ABS;
++ if (name[0] == '.')
+ memmove(name, name+1, strlen(name));
+- }
+ }
+ }
+ }
+@@ -357,7 +351,7 @@ static Elf64_Sym *find_dot_toc(Elf64_Shdr *sechdrs,
+ numsyms = sechdrs[symindex].sh_size / sizeof(Elf64_Sym);
+
+ for (i = 1; i < numsyms; i++) {
+- if (syms[i].st_shndx == SHN_ABS
++ if (syms[i].st_shndx == SHN_UNDEF
+ && strcmp(strtab + syms[i].st_name, "TOC.") == 0)
+ return &syms[i];
+ }
+diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
+index 48958d3..e080746 100644
+--- a/scripts/mod/modpost.c
++++ b/scripts/mod/modpost.c
+@@ -594,8 +594,7 @@ static int ignore_undef_symbol(struct elf_info *info, const char *symname)
+ if (strncmp(symname, "_restgpr0_", sizeof("_restgpr0_") - 1) == 0 ||
+ strncmp(symname, "_savegpr0_", sizeof("_savegpr0_") - 1) == 0 ||
+ strncmp(symname, "_restvr_", sizeof("_restvr_") - 1) == 0 ||
+- strncmp(symname, "_savevr_", sizeof("_savevr_") - 1) == 0 ||
+- strcmp(symname, ".TOC.") == 0)
++ strncmp(symname, "_savevr_", sizeof("_savevr_") - 1) == 0)
+ return 1;
+ /* Do not ignore this symbol */
+ return 0;
+--
+2.5.0
+
diff --git a/kernel.spec b/kernel.spec
index 539c45b8a..b1a2a283c 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -40,7 +40,7 @@ Summary: The Linux kernel
# For non-released -rc kernels, this will be appended after the rcX and
# gitX tags, so a 3 here would become part of release "0.rcX.gitX.3"
#
-%global baserelease 1
+%global baserelease 2
%global fedora_build %{baserelease}
# base_sublevel is the kernel version we're starting with and patching
@@ -580,6 +580,8 @@ Patch502: firmware-Drop-WARN-from-usermodehelper_read_trylock-.patch
Patch508: kexec-uefi-copy-secure_boot-flag-in-boot-params.patch
+Patch510: 0001-Revert-powerpc-Simplify-module-TOC-handling.patch
+
#rhbz 1286293
Patch571: ideapad-laptop-Add-Lenovo-ideapad-Y700-17ISK-to-no_h.patch
@@ -2041,6 +2043,9 @@ fi
#
#
%changelog
+* Tue Feb 9 2016 Peter Robinson <pbrobinson@fedoraproject.org> 4.5.0-0.rc3.git0.2
+- Fix Power64 kernel build
+
* Mon Feb 08 2016 Justin M. Forbes <jforbes@fedoraproject.org> - 4.5.0-0.rc3.git0.1
- Disable debugging options.
- Linux v4.5-rc3