[patch 2.6.10-rc1] Include useful absolute symbols in kallsyms

From: Keith Owens
Date: Fri Oct 29 2004 - 04:41:07 EST


Some absolute symbols are useful, they can even appear in back traces.
Tweak kallsyms to retain the useful absolute symbols.

Signed-off-by: Keith Owens <kaos@xxxxxxx>

---

This list is from ia64, add absolute symbols from other architectures
as required.

Index: linux/scripts/kallsyms.c
===================================================================
--- linux.orig/scripts/kallsyms.c Fri Oct 29 17:01:13 2004
+++ linux/scripts/kallsyms.c Fri Oct 29 18:31:05 2004
@@ -121,7 +121,14 @@ read_symbol(FILE *in, struct sym_entry *
_sinittext = s->addr;
else if (strcmp(str, "_einittext") == 0)
_einittext = s->addr;
- else if (toupper(s->type) == 'A' || toupper(s->type) == 'U')
+ else if (toupper(s->type) == 'A') {
+ /* Keep these useful absolute symbols */
+ if (strcmp(str, "__kernel_syscall_via_break") &&
+ strcmp(str, "__kernel_syscall_via_epc") &&
+ strcmp(str, "__kernel_sigtramp") &&
+ strcmp(str, "__gp"))
+ return -1;
+ } else if (toupper(s->type) == 'U')
return -1;

/* include the type field in the symbol name, so that it gets

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/