diff options
author | Konstantin Khlebnikov <khlebnikov@openvz.org> | 2013-02-22 19:34:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-23 20:50:17 -0500 |
commit | 08b52706d505658eac0962d215ff697f898bbc13 (patch) | |
tree | b732ff7986179ab4e767ccbf5f6909a67cdb03c3 /mm/mmap.c | |
parent | ec8acf20afb8534ed511f6613dd2226b9e301010 (diff) |
mm/rmap: rename anon_vma_unlock() => anon_vma_unlock_write()
The comment in commit 4fc3f1d66b1e ("mm/rmap, migration: Make
rmap_walk_anon() and try_to_unmap_anon() more scalable") says:
| Rename anon_vma_[un]lock() => anon_vma_[un]lock_write(),
| to make it clearer that it's an exclusive write-lock in
| that case - suggested by Rik van Riel.
But that commit renames only anon_vma_lock()
Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Cc: Ingo Molnar <mingo@kernel.org>
Reviewed-by: Rik van Riel <riel@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/mmap.c')
-rw-r--r-- | mm/mmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -809,7 +809,7 @@ again: remove_next = 1 + (end > next->vm_end); | |||
809 | anon_vma_interval_tree_post_update_vma(vma); | 809 | anon_vma_interval_tree_post_update_vma(vma); |
810 | if (adjust_next) | 810 | if (adjust_next) |
811 | anon_vma_interval_tree_post_update_vma(next); | 811 | anon_vma_interval_tree_post_update_vma(next); |
812 | anon_vma_unlock(anon_vma); | 812 | anon_vma_unlock_write(anon_vma); |
813 | } | 813 | } |
814 | if (mapping) | 814 | if (mapping) |
815 | mutex_unlock(&mapping->i_mmap_mutex); | 815 | mutex_unlock(&mapping->i_mmap_mutex); |
@@ -3017,7 +3017,7 @@ static void vm_unlock_anon_vma(struct anon_vma *anon_vma) | |||
3017 | if (!__test_and_clear_bit(0, (unsigned long *) | 3017 | if (!__test_and_clear_bit(0, (unsigned long *) |
3018 | &anon_vma->root->rb_root.rb_node)) | 3018 | &anon_vma->root->rb_root.rb_node)) |
3019 | BUG(); | 3019 | BUG(); |
3020 | anon_vma_unlock(anon_vma); | 3020 | anon_vma_unlock_write(anon_vma); |
3021 | } | 3021 | } |
3022 | } | 3022 | } |
3023 | 3023 | ||