aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/module.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/include/linux/module.h b/include/linux/module.h
index 1c755b2f937d..1d3ccb173fd6 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -308,9 +308,13 @@ struct module
308#endif 308#endif
309 309
310#ifdef CONFIG_KALLSYMS 310#ifdef CONFIG_KALLSYMS
311 /* We keep the symbol and string tables for kallsyms. */ 311 /*
312 Elf_Sym *symtab; 312 * We keep the symbol and string tables for kallsyms.
313 unsigned int num_symtab; 313 * The core_* fields below are temporary, loader-only (they
314 * could really be discarded after module init).
315 */
316 Elf_Sym *symtab, *core_symtab;
317 unsigned int num_symtab, core_num_syms;
314 char *strtab; 318 char *strtab;
315 319
316 /* Section attributes */ 320 /* Section attributes */