aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/lockdep.c
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-12-06 20:14:12 -0500
committerAndi Kleen <andi@basil.nowhere.org>2006-12-06 20:14:12 -0500
commiteef5e0d185fc049bda11fa14ba286fbd357da896 (patch)
treea5e6943a17288dbe1c03d8a2c440d36d7baa1881 /kernel/lockdep.c
parent446f713ba1afd68568139ae4691335ba273fa7f4 (diff)
[PATCH] unwinder: Remove lockdep disabling of nested locks for unwinder
Shouldn't be needed anymore since __kernel_text_address is used unconditionally on x86-64 Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'kernel/lockdep.c')
-rw-r--r--kernel/lockdep.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/lockdep.c b/kernel/lockdep.c
index c9fefdb1a7db..9bb8d784eb02 100644
--- a/kernel/lockdep.c
+++ b/kernel/lockdep.c
@@ -228,11 +228,7 @@ static int save_trace(struct stack_trace *trace)
228 trace->skip = 3; 228 trace->skip = 3;
229 trace->all_contexts = 0; 229 trace->all_contexts = 0;
230 230
231 /* Make sure to not recurse in case the the unwinder needs to tak
232e locks. */
233 lockdep_off();
234 save_stack_trace(trace, NULL); 231 save_stack_trace(trace, NULL);
235 lockdep_on();
236 232
237 trace->max_entries = trace->nr_entries; 233 trace->max_entries = trace->nr_entries;
238 234