[openwrt/openwrt] kernel: avoid stripping retpoline flag with CONFIG_MODULE_STRIPPED
LEDE Commits
lede-commits at lists.infradead.org
Wed Feb 21 11:58:58 PST 2018
nbd pushed a commit to openwrt/openwrt.git, branch master:
https://git.lede-project.org/9d2a23780e32a97f0eae6f33bff4a64f7f0f835e
commit 9d2a23780e32a97f0eae6f33bff4a64f7f0f835e
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Wed Feb 21 20:55:10 2018 +0100
kernel: avoid stripping retpoline flag with CONFIG_MODULE_STRIPPED
Fixes kernel warning when loading modules
Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
target/linux/generic/hack-4.14/204-module_strip.patch | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/target/linux/generic/hack-4.14/204-module_strip.patch b/target/linux/generic/hack-4.14/204-module_strip.patch
index f450d6c..db65062 100644
--- a/target/linux/generic/hack-4.14/204-module_strip.patch
+++ b/target/linux/generic/hack-4.14/204-module_strip.patch
@@ -158,7 +158,7 @@ Signed-off-by: Felix Fietkau <nbd at nbd.name>
buf_printf(b, "\n");
buf_printf(b, "__visible struct module __this_module\n");
buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
-@@ -2161,24 +2165,30 @@ static void add_header(struct buffer *b,
+@@ -2161,8 +2165,10 @@ static void add_header(struct buffer *b,
static void add_intree_flag(struct buffer *b, int is_intree)
{
@@ -169,14 +169,7 @@ Signed-off-by: Felix Fietkau <nbd at nbd.name>
}
/* Cannot check for assembler */
- static void add_retpoline(struct buffer *b)
- {
-+#ifndef CONFIG_MODULE_STRIPPED
- buf_printf(b, "\n#ifdef RETPOLINE\n");
- buf_printf(b, "MODULE_INFO(retpoline, \"Y\");\n");
- buf_printf(b, "#endif\n");
-+#endif
- }
+@@ -2175,10 +2181,12 @@ static void add_retpoline(struct buffer
static void add_staging_flag(struct buffer *b, const char *name)
{
@@ -189,7 +182,7 @@ Signed-off-by: Felix Fietkau <nbd at nbd.name>
}
/**
-@@ -2277,11 +2287,13 @@ static void add_depends(struct buffer *b
+@@ -2277,11 +2285,13 @@ static void add_depends(struct buffer *b
static void add_srcversion(struct buffer *b, struct module *mod)
{
@@ -203,7 +196,7 @@ Signed-off-by: Felix Fietkau <nbd at nbd.name>
}
static void write_if_changed(struct buffer *b, const char *fname)
-@@ -2518,7 +2530,9 @@ int main(int argc, char **argv)
+@@ -2518,7 +2528,9 @@ int main(int argc, char **argv)
add_staging_flag(&buf, mod->name);
err |= add_versions(&buf, mod);
add_depends(&buf, mod, modules);
More information about the lede-commits
mailing list