diff options
-rw-r--r-- | kernel/module.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/module.c b/kernel/module.c index d24fcf29cb64..b99e80119eef 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -1948,6 +1948,10 @@ static int simplify_symbols(struct module *mod, const struct load_info *info) | |||
1948 | 1948 | ||
1949 | switch (sym[i].st_shndx) { | 1949 | switch (sym[i].st_shndx) { |
1950 | case SHN_COMMON: | 1950 | case SHN_COMMON: |
1951 | /* Ignore common symbols */ | ||
1952 | if (!strncmp(name, "__gnu_lto", 9)) | ||
1953 | break; | ||
1954 | |||
1951 | /* We compiled with -fno-common. These are not | 1955 | /* We compiled with -fno-common. These are not |
1952 | supposed to happen. */ | 1956 | supposed to happen. */ |
1953 | pr_debug("Common symbol: %s\n", name); | 1957 | pr_debug("Common symbol: %s\n", name); |