diff options
author | 2009-03-23 14:50:03 +0100 | |
---|---|---|
committer | 2009-03-23 21:20:20 +0100 | |
commit | 80c5520811d3805adcb15c570ea5e2d489fa5d0b (patch) | |
tree | ae797a7f4af39f80e77526533d06ac23b439f0ab /arch/x86/kernel/dumpstack.c | |
parent | Merge branches 'irq/sparseirq' and 'linus' into irq/core (diff) | |
parent | cpumask: remove cpumask allocation from idle_balance, fix (diff) | |
download | linux-dev-80c5520811d3805adcb15c570ea5e2d489fa5d0b.tar.xz linux-dev-80c5520811d3805adcb15c570ea5e2d489fa5d0b.zip |
Merge branch 'cpus4096' into irq/threaded
Conflicts:
arch/parisc/kernel/irq.c
kernel/irq/handle.c
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/dumpstack.c')
-rw-r--r-- | arch/x86/kernel/dumpstack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/dumpstack.c b/arch/x86/kernel/dumpstack.c index 6b1f6f6f8661..87d103ded1c3 100644 --- a/arch/x86/kernel/dumpstack.c +++ b/arch/x86/kernel/dumpstack.c @@ -99,7 +99,7 @@ print_context_stack(struct thread_info *tinfo, frame = frame->next_frame; bp = (unsigned long) frame; } else { - ops->address(data, addr, bp == 0); + ops->address(data, addr, 0); } print_ftrace_graph_addr(addr, data, ops, tinfo, graph); } |