summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Hunt <hunt@redhat.com>2008-03-28 17:04:22 -0400
committerMartin Hunt <hunt@redhat.com>2008-03-28 17:04:22 -0400
commit6567250495117bfa4eb8b58c805897133c0d3ff2 (patch)
tree8c8af87baa939e94f43ccbbef131b96a3bc76117
parent580f1a959f79fdd5534a5f2f8daeb415399f38ac (diff)
downloadsystemtap-steved-6567250495117bfa4eb8b58c805897133c0d3ff2.tar.gz
systemtap-steved-6567250495117bfa4eb8b58c805897133c0d3ff2.tar.xz
systemtap-steved-6567250495117bfa4eb8b58c805897133c0d3ff2.zip
Fix regression.
-rw-r--r--runtime/stack-i386.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stack-i386.c b/runtime/stack-i386.c
index c99b4a8c..11919b29 100644
--- a/runtime/stack-i386.c
+++ b/runtime/stack-i386.c
@@ -69,7 +69,7 @@ static void __stp_stack_print (struct pt_regs *regs, int verbose, int levels)
/* If an error happened or we hit a kretprobe trampoline, use fallback backtrace */
/* FIXME: is there a way to unwind across kretprobe trampolines? */
if (ret < 0 || (ret > 0 && UNW_PC(&info) == _stp_kretprobe_trampoline))
- _stp_stack_print_fallback(UNW_SP(&info), verbose);
+ _stp_stack_print_fallback(context, UNW_SP(&info), verbose);
break;
}
#endif /* CONFIG_FRAME_POINTER */