aboutsummaryrefslogtreecommitdiff
path: root/include/linux/module.h
diff options
context:
space:
mode:
authorJan Beulich <JBeulich@novell.com>2009-07-06 14:51:44 +0100
committerRusty Russell <rusty@rustcorp.com.au>2009-09-25 00:32:57 +0930
commit554bdfe5acf3715e87c8d5e25a4f9a896ac9f014 (patch)
tree8a03f9799114c8100a3e54d230d9e31703248f7a /include/linux/module.h
parent4a4962263f07d14660849ec134ee42b63e95ea9a (diff)
module: reduce string table for loaded modules (v2)
Also remove all parts of the string table (referenced by the symbol table) that are not needed for kallsyms use (i.e. which were only referenced by symbols discarded by the previous patch, or not referenced at all for whatever reason). Signed-off-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux/module.h')
-rw-r--r--include/linux/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/module.h b/include/linux/module.h
index 1d3ccb173fd..aca98036595 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -315,7 +315,7 @@ struct module
*/
Elf_Sym *symtab, *core_symtab;
unsigned int num_symtab, core_num_syms;
- char *strtab;
+ char *strtab, *core_strtab;
/* Section attributes */
struct module_sect_attrs *sect_attrs;