Skip to content
Snippets Groups Projects
Commit 6f00df24 authored by Ralf Baechle's avatar Ralf Baechle Committed by Linus Torvalds
Browse files

[PATCH] Strip local symbols from kallsyms


Local symbols generated by gcc start with a `$'; no point in including them
in the kernel.

Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 022a4a7b
No related branches found
No related tags found
No related merge requests found
...@@ -116,6 +116,9 @@ static int read_symbol(FILE *in, struct sym_entry *s) ...@@ -116,6 +116,9 @@ static int read_symbol(FILE *in, struct sym_entry *s)
else if (toupper(stype) == 'U' || else if (toupper(stype) == 'U' ||
is_arm_mapping_symbol(sym)) is_arm_mapping_symbol(sym))
return -1; return -1;
/* exclude also MIPS ELF local symbols ($L123 instead of .L123) */
else if (str[0] == '$')
return -1;
/* include the type field in the symbol name, so that it gets /* include the type field in the symbol name, so that it gets
* compressed together */ * compressed together */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment