]> Git Repo - linux.git/commitdiff
[PATCH] lockdep: annotate mm
authorIngo Molnar <[email protected]>
Mon, 3 Jul 2006 07:25:08 +0000 (00:25 -0700)
committerLinus Torvalds <[email protected]>
Mon, 3 Jul 2006 22:27:07 +0000 (15:27 -0700)
Teach special (recursive) locking code to the lock validator.  Has no effect
on non-lockdep kernels.

Signed-off-by: Ingo Molnar <[email protected]>
Signed-off-by: Arjan van de Ven <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/memory.c
mm/mremap.c

index 7e2a4b1580e31474ed3adb1136cc1f6a1ea4c650..c1e14c9e67e4da1c8696f0cc695e0b1212a302a2 100644 (file)
@@ -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 {
                /*
index 1903bdf65e428d88e5bf124243d99ee7ab7c51e3..7c15cf3373ad0d0e94ba6f5b74145339da0052d3 100644 (file)
@@ -97,7 +97,7 @@ static void move_ptes(struct vm_area_struct *vma, pmd_t *old_pmd,
        new_pte = pte_offset_map_nested(new_pmd, new_addr);
        new_ptl = pte_lockptr(mm, new_pmd);
        if (new_ptl != old_ptl)
-               spin_lock(new_ptl);
+               spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
 
        for (; old_addr < old_end; old_pte++, old_addr += PAGE_SIZE,
                                   new_pte++, new_addr += PAGE_SIZE) {
This page took 0.059929 seconds and 4 git commands to generate.