diff options
author | Martin Hunt <hunt@redhat.com> | 2008-04-09 17:02:40 -0400 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 2008-04-09 17:02:40 -0400 |
commit | b53c1feef55dc74501a90257e4beff6c1a9cf03b (patch) | |
tree | c7434cf54ae9cc8d7cb898f030f419737fb13a6c /runtime/stack-x86_64.c | |
parent | 404bf86f4c825eafe4ad9f34f676c0e37464cfe7 (diff) | |
download | systemtap-steved-b53c1feef55dc74501a90257e4beff6c1a9cf03b.tar.gz systemtap-steved-b53c1feef55dc74501a90257e4beff6c1a9cf03b.tar.xz systemtap-steved-b53c1feef55dc74501a90257e4beff6c1a9cf03b.zip |
Fixes for 2.6.25 pt_regs changes.
Diffstat (limited to 'runtime/stack-x86_64.c')
-rw-r--r-- | runtime/stack-x86_64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/stack-x86_64.c b/runtime/stack-x86_64.c index 96f82004..ae8e446d 100644 --- a/runtime/stack-x86_64.c +++ b/runtime/stack-x86_64.c @@ -8,8 +8,6 @@ * later version. */ -// todo: don't use unwinder for kernel if CONFIG_FRAME - /* DWARF unwinder failed. Just dump intereting addresses on kernel stack. */ static void _stp_stack_print_fallback(unsigned long stack, int verbose) { @@ -26,6 +24,7 @@ static void _stp_stack_print_fallback(unsigned long stack, int verbose) static void __stp_stack_print(struct pt_regs *regs, int verbose, int levels) { + // FIXME: large stack allocation struct unwind_frame_info info; arch_unw_init_frame_info(&info, regs); |