]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
modpost: Whitelist .text.fixup and .exception.text
authorThierry Reding <thierry.reding@gmail.com>
Wed, 15 Apr 2015 03:53:48 +0000 (13:23 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 22 Apr 2015 08:01:20 +0000 (17:31 +0930)
32-bit and 64-bit ARM use these sections to store executable code, so
they must be whitelisted in modpost's table of valid text sections.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
scripts/mod/modpost.c

index cbd53e08769d8979165f1689eb9a11b30c1841cb..6a925f200b253db1b6721c2d0005a75d815d3dc6 100644 (file)
@@ -876,7 +876,7 @@ static void check_section(const char *modname, struct elf_info *elf,
 #define TEXT_SECTIONS ".text", ".text.unlikely", ".sched.text", \
                ".kprobes.text"
 #define OTHER_TEXT_SECTIONS ".ref.text", ".head.text", ".spinlock.text", \
-               ".fixup", ".entry.text"
+               ".fixup", ".entry.text", ".text.fixup", ".exception.text"
 
 #define INIT_SECTIONS      ".init.*"
 #define MEM_INIT_SECTIONS  ".meminit.*"