kernel: bump 5.15 to 5.15.47
[openwrt/openwrt.git] / target / linux / generic / hack-5.15 / 221-module_exports.patch
1 From b14784e7883390c20ed3ff904892255404a5914b Mon Sep 17 00:00:00 2001
2 From: Felix Fietkau <nbd@nbd.name>
3 Date: Fri, 7 Jul 2017 17:05:53 +0200
4 Subject: add an optional config option for stripping all unnecessary symbol exports from the kernel image
5
6 lede-commit: bb5a40c64b7c4f4848509fa0a6625055fc9e66cc
7 Signed-off-by: Felix Fietkau <nbd@nbd.name>
8 ---
9 include/asm-generic/vmlinux.lds.h | 18 +++++++++++++++---
10 include/linux/export.h | 9 ++++++++-
11 scripts/Makefile.build | 2 +-
12 3 files changed, 24 insertions(+), 5 deletions(-)
13
14 --- a/include/asm-generic/vmlinux.lds.h
15 +++ b/include/asm-generic/vmlinux.lds.h
16 @@ -81,6 +81,16 @@
17 #define RO_EXCEPTION_TABLE
18 #endif
19
20 +#ifndef SYMTAB_KEEP
21 +#define SYMTAB_KEEP KEEP(*(SORT(___ksymtab+*)))
22 +#define SYMTAB_KEEP_GPL KEEP(*(SORT(___ksymtab_gpl+*)))
23 +#endif
24 +
25 +#ifndef SYMTAB_DISCARD
26 +#define SYMTAB_DISCARD
27 +#define SYMTAB_DISCARD_GPL
28 +#endif
29 +
30 /* Align . to a 8 byte boundary equals to maximum function alignment. */
31 #define ALIGN_FUNCTION() . = ALIGN(8)
32
33 @@ -484,14 +494,14 @@
34 /* Kernel symbol table: Normal symbols */ \
35 __ksymtab : AT(ADDR(__ksymtab) - LOAD_OFFSET) { \
36 __start___ksymtab = .; \
37 - KEEP(*(SORT(___ksymtab+*))) \
38 + SYMTAB_KEEP \
39 __stop___ksymtab = .; \
40 } \
41 \
42 /* Kernel symbol table: GPL-only symbols */ \
43 __ksymtab_gpl : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) { \
44 __start___ksymtab_gpl = .; \
45 - KEEP(*(SORT(___ksymtab_gpl+*))) \
46 + SYMTAB_KEEP_GPL \
47 __stop___ksymtab_gpl = .; \
48 } \
49 \
50 @@ -511,7 +521,7 @@
51 \
52 /* Kernel symbol table: strings */ \
53 __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) { \
54 - *(__ksymtab_strings) \
55 + *(__ksymtab_strings+*) \
56 } \
57 \
58 /* __*init sections */ \
59 @@ -1018,6 +1028,8 @@
60
61 #define COMMON_DISCARDS \
62 SANITIZER_DISCARDS \
63 + SYMTAB_DISCARD \
64 + SYMTAB_DISCARD_GPL \
65 *(.discard) \
66 *(.discard.*) \
67 *(.modinfo) \
68 --- a/include/linux/export.h
69 +++ b/include/linux/export.h
70 @@ -84,6 +84,12 @@ struct kernel_symbol {
71
72 #else
73
74 +#ifdef MODULE
75 +#define __EXPORT_SUFFIX(sym)
76 +#else
77 +#define __EXPORT_SUFFIX(sym) "+" #sym
78 +#endif
79 +
80 /*
81 * For every exported symbol, do the following:
82 *
83 @@ -101,7 +107,7 @@ struct kernel_symbol {
84 extern const char __kstrtab_##sym[]; \
85 extern const char __kstrtabns_##sym[]; \
86 __CRC_SYMBOL(sym, sec); \
87 - asm(" .section \"__ksymtab_strings\",\"aMS\",%progbits,1 \n" \
88 + asm(" .section \"__ksymtab_strings" __EXPORT_SUFFIX(sym) "\",\"aMS\",%progbits,1 \n" \
89 "__kstrtab_" #sym ": \n" \
90 " .asciz \"" #sym "\" \n" \
91 "__kstrtabns_" #sym ": \n" \
92 --- a/scripts/Makefile.build
93 +++ b/scripts/Makefile.build
94 @@ -396,7 +396,7 @@ targets += $(real-dtb-y) $(lib-y) $(alwa
95 # Linker scripts preprocessor (.lds.S -> .lds)
96 # ---------------------------------------------------------------------------
97 quiet_cmd_cpp_lds_S = LDS $@
98 - cmd_cpp_lds_S = $(CPP) $(cpp_flags) -P -U$(ARCH) \
99 + cmd_cpp_lds_S = $(CPP) $(EXTRA_LDSFLAGS) $(cpp_flags) -P -U$(ARCH) \
100 -D__ASSEMBLY__ -DLINKER_SCRIPT -o $@ $<
101
102 $(obj)/%.lds: $(src)/%.lds.S FORCE