]> Pileus Git - ~andy/linux/commitdiff
sep: Convert sep_lock_user_pages() to get_user_pages_fast()
authorJan Kara <jack@suse.cz>
Wed, 2 Oct 2013 14:27:52 +0000 (16:27 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 6 Oct 2013 00:52:58 +0000 (17:52 -0700)
CC: Mark Allyn <mark.a.allyn@intel.com>
CC: Jayant Mangalampalli <jayant.mangalampalli@intel.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sep/sep_main.c

index 6a98a208bbf2895b0a978cd10658edf7e7f51ae0..11f5b211745758bb42dd6eb2190620282109ea1c 100644 (file)
@@ -1263,13 +1263,8 @@ static int sep_lock_user_pages(struct sep_device *sep,
        }
 
        /* Convert the application virtual address into a set of physical */
-       down_read(&current->mm->mmap_sem);
-       result = get_user_pages(current, current->mm, app_virt_addr,
-               num_pages,
-               ((in_out_flag == SEP_DRIVER_IN_FLAG) ? 0 : 1),
-               0, page_array, NULL);
-
-       up_read(&current->mm->mmap_sem);
+       result = get_user_pages_fast(app_virt_addr, num_pages,
+               ((in_out_flag == SEP_DRIVER_IN_FLAG) ? 0 : 1), page_array);
 
        /* Check the number of pages locked - if not all then exit with error */
        if (result != num_pages) {