diff options
author | David Vrabel <david.vrabel@citrix.com> | 2014-04-07 08:52:12 -0400 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2014-04-07 08:52:12 -0400 |
commit | 2c5cb2770392fb9c5d8518688c8bc61986d70dc6 (patch) | |
tree | b19210e709de6ee0d22b67ef605a569500cf1a18 /kernel/module.c | |
parent | cd979883b9ede90643e019f33cb317933eb867b4 (diff) | |
parent | 683b6c6f82a60fabf47012581c2cfbf1b037ab95 (diff) |
Merge commit '683b6c6f82a60fabf47012581c2cfbf1b037ab95' into stable/for-linus-3.15
This merge of the irq-core-for-linus branch broke the ARM build when
Xen is enabled.
Conflicts:
drivers/xen/events/events_base.c
Diffstat (limited to 'kernel/module.c')
-rw-r--r-- | kernel/module.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c index d24fcf29cb64..8dc7f5e80dd8 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -1015,7 +1015,7 @@ static size_t module_flags_taint(struct module *mod, char *buf) | |||
1015 | buf[l++] = 'C'; | 1015 | buf[l++] = 'C'; |
1016 | /* | 1016 | /* |
1017 | * TAINT_FORCED_RMMOD: could be added. | 1017 | * TAINT_FORCED_RMMOD: could be added. |
1018 | * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't | 1018 | * TAINT_CPU_OUT_OF_SPEC, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't |
1019 | * apply to modules. | 1019 | * apply to modules. |
1020 | */ | 1020 | */ |
1021 | return l; | 1021 | return l; |
@@ -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); |