From: Jarek Poplawski Date: Tue, 20 Feb 2007 21:58:00 +0000 (-0800) Subject: [PATCH] lockdep: debug_locks check after check_chain_key X-Git-Tag: v2.6.21-rc1~31 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=60e114d1134555d1813e20a8cd86304331da05c7;p=~shefty%2Frdma-dev.git [PATCH] lockdep: debug_locks check after check_chain_key In __lock_acquire check_chain_key can turn off debug_locks, so check is needed to assure proper return code. Signed-off-by: Jarek Poplawski Cc: Ingo Molnar Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/lockdep.c b/kernel/lockdep.c index 592c576d77a..a08a17218df 100644 --- a/kernel/lockdep.c +++ b/kernel/lockdep.c @@ -2228,6 +2228,10 @@ out_calc_hash: curr->lockdep_depth++; check_chain_key(curr); +#ifdef CONFIG_DEBUG_LOCKDEP + if (unlikely(!debug_locks)) + return 0; +#endif if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) { debug_locks_off(); printk("BUG: MAX_LOCK_DEPTH too low!\n");