[PATCH 8/8] Change KERNEL_RELOC_SYMBOL to "_stext" on ppc32
From: Anton Vorontsov <hidden>
Date: 2009-11-27 22:33:52
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Anton Vorontsov <hidden>
Date: 2009-11-27 22:33:52
Subsystem:
the rest · Maintainer:
Linus Torvalds
Currently staprun fails at send_relocation_kernel(), this is because ppc32 doesn't have ".__start" symbol. I think we should use _stext, just as other arches. Signed-off-by: Anton Vorontsov <redacted> --- runtime/staprun/staprun.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/runtime/staprun/staprun.c b/runtime/staprun/staprun.c
index 078be4c..5bd5163 100644
--- a/runtime/staprun/staprun.c
+++ b/runtime/staprun/staprun.c@@ -372,7 +372,7 @@ int send_relocation_kernel () free (line); line=NULL; if (symbol == NULL) continue; /* OOM? */ -#ifdef __powerpc__ +#ifdef __powerpc64__ #define KERNEL_RELOC_SYMBOL ".__start" #else #define KERNEL_RELOC_SYMBOL "_stext"
--
1.6.3.3