diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-07-03 07:25:08 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-03 22:27:07 (GMT) |
commit | f20dc5f7c1adf1c4b68b7672d6f2002cb824e636 (patch) | |
tree | ffd31717399ff783da29444f3446a63285f22b14 /mm/memory.c | |
parent | eb4542b98c81e22e08587b747b21986a45360999 (diff) | |
download | linux-fsl-qoriq-f20dc5f7c1adf1c4b68b7672d6f2002cb824e636.tar.xz |
[PATCH] lockdep: annotate mm
Teach special (recursive) locking code to the lock validator. Has no effect
on non-lockdep kernels.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/memory.c')
-rw-r--r-- | mm/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory.c b/mm/memory.c index 7e2a4b1..c1e14c9 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -503,7 +503,7 @@ again: return -ENOMEM; src_pte = pte_offset_map_nested(src_pmd, addr); src_ptl = pte_lockptr(src_mm, src_pmd); - spin_lock(src_ptl); + spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING); do { /* |