diff options
author | Andrea Arcangeli <aarcange@redhat.com> | 2015-02-11 18:27:23 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-11 20:06:05 -0500 |
commit | a7b780750e1a1c7833812681e1f8fa30bbb06802 (patch) | |
tree | e13f7ac217df9904b5cbc1cb624c9f7c9e2130ac /arch/mips | |
parent | 0fd71a56f41d4ffabeda1dae9ff5ed4f34d4e935 (diff) |
mm: gup: use get_user_pages_unlocked within get_user_pages_fast
This allows the get_user_pages_fast slow path to release the mmap_sem
before blocking.
Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
Reviewed-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Andres Lagar-Cavilla <andreslc@google.com>
Cc: Peter Feiner <pfeiner@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/mm/gup.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/mips/mm/gup.c b/arch/mips/mm/gup.c index 70795a67a276..349995d19c7f 100644 --- a/arch/mips/mm/gup.c +++ b/arch/mips/mm/gup.c | |||
@@ -301,11 +301,9 @@ slow_irqon: | |||
301 | start += nr << PAGE_SHIFT; | 301 | start += nr << PAGE_SHIFT; |
302 | pages += nr; | 302 | pages += nr; |
303 | 303 | ||
304 | down_read(&mm->mmap_sem); | 304 | ret = get_user_pages_unlocked(current, mm, start, |
305 | ret = get_user_pages(current, mm, start, | 305 | (end - start) >> PAGE_SHIFT, |
306 | (end - start) >> PAGE_SHIFT, | 306 | write, 0, pages); |
307 | write, 0, pages, NULL); | ||
308 | up_read(&mm->mmap_sem); | ||
309 | 307 | ||
310 | /* Have to be a bit careful with return values */ | 308 | /* Have to be a bit careful with return values */ |
311 | if (nr > 0) { | 309 | if (nr > 0) { |