diff options
author | Davidlohr Bueso <dave@stgolabs.net> | 2014-12-12 19:54:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-13 15:42:45 -0500 |
commit | 83cde9e8ba95d180eaefefe834958fbf7008cf39 (patch) | |
tree | 041dd6f0bc4e41baec1a46422683596111e1e2a8 /mm/filemap_xip.c | |
parent | 8b28f621bea6f84d44adf7e804b73aff1e09105b (diff) |
mm: use new helper functions around the i_mmap_mutex
Convert all open coded mutex_lock/unlock calls to the
i_mmap_[lock/unlock]_write() helpers.
Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Acked-by: Rik van Riel <riel@redhat.com>
Acked-by: "Kirill A. Shutemov" <kirill@shutemov.name>
Acked-by: Hugh Dickins <hughd@google.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Acked-by: Mel Gorman <mgorman@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/filemap_xip.c')
-rw-r--r-- | mm/filemap_xip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/filemap_xip.c b/mm/filemap_xip.c index d8d9fe3f685c..bad746bde4a2 100644 --- a/mm/filemap_xip.c +++ b/mm/filemap_xip.c | |||
@@ -182,7 +182,7 @@ __xip_unmap (struct address_space * mapping, | |||
182 | return; | 182 | return; |
183 | 183 | ||
184 | retry: | 184 | retry: |
185 | mutex_lock(&mapping->i_mmap_mutex); | 185 | i_mmap_lock_write(mapping); |
186 | vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) { | 186 | vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) { |
187 | mm = vma->vm_mm; | 187 | mm = vma->vm_mm; |
188 | address = vma->vm_start + | 188 | address = vma->vm_start + |
@@ -202,7 +202,7 @@ retry: | |||
202 | page_cache_release(page); | 202 | page_cache_release(page); |
203 | } | 203 | } |
204 | } | 204 | } |
205 | mutex_unlock(&mapping->i_mmap_mutex); | 205 | i_mmap_unlock_write(mapping); |
206 | 206 | ||
207 | if (locked) { | 207 | if (locked) { |
208 | mutex_unlock(&xip_sparse_mutex); | 208 | mutex_unlock(&xip_sparse_mutex); |