Преглед изворни кода

kernel: avoid stripping retpoline flag with CONFIG_MODULE_STRIPPED

Fixes kernel warning when loading modules

Signed-off-by: Felix Fietkau <[email protected]>
Felix Fietkau пре 7 година
родитељ
комит
9d2a23780e
1 измењених фајлова са 4 додато и 11 уклоњено
  1. 4 11
      target/linux/generic/hack-4.14/204-module_strip.patch

+ 4 - 11
target/linux/generic/hack-4.14/204-module_strip.patch

@@ -158,7 +158,7 @@ Signed-off-by: Felix Fietkau <[email protected]>
  	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 <[email protected]>
  }
  
  /* 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 <[email protected]>
  }
  
  /**
-@@ -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 <[email protected]>
  }
  
  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);