summaryrefslogtreecommitdiffstats
path: root/runtime/stack-x86_64.c
diff options
context:
space:
mode:
authorMartin Hunt <hunt@redhat.com>2008-04-09 17:02:40 -0400
committerMartin Hunt <hunt@redhat.com>2008-04-09 17:02:40 -0400
commitb53c1feef55dc74501a90257e4beff6c1a9cf03b (patch)
treec7434cf54ae9cc8d7cb898f030f419737fb13a6c /runtime/stack-x86_64.c
parent404bf86f4c825eafe4ad9f34f676c0e37464cfe7 (diff)
downloadsystemtap-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.c3
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);