]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/x86/kernel/dumpstack_32.c
x86: mpparse.c fix style problems
[linux-2.6-omap-h63xx.git] / arch / x86 / kernel / dumpstack_32.c
index 7b031b106ec8f65cb40ee4042eb8341c356e4a09..d593cd1f58dcca22925f10e2b3669435a4a25557 100644 (file)
@@ -23,6 +23,8 @@ void dump_trace(struct task_struct *task, struct pt_regs *regs,
                unsigned long *stack, unsigned long bp,
                const struct stacktrace_ops *ops, void *data)
 {
+       int graph = 0;
+
        if (!task)
                task = current;
 
@@ -50,7 +52,8 @@ void dump_trace(struct task_struct *task, struct pt_regs *regs,
 
                context = (struct thread_info *)
                        ((unsigned long)stack & (~(THREAD_SIZE - 1)));
-               bp = print_context_stack(context, stack, bp, ops, data, NULL);
+               bp = print_context_stack(context, stack, bp, ops,
+                                        data, NULL, &graph);
 
                stack = (unsigned long *)context->previous_esp;
                if (!stack)