On 2013/10/02 8:27 AM, "Jan Kara" <j...@suse.cz> wrote:
>CC: Greg Kroah-Hartman <g...@kroah.com>
>CC: Peng Tao <tao.p...@emc.com>
>CC: Andreas Dilger <andreas.dil...@intel.com>
>CC: hpdd-disc...@lists.01.org
>Signed-off-by: Jan Kara <j...@suse.cz>

Acked-by: Andreas Dilger <andreas.dil...@intel.com>

>---
> drivers/staging/lustre/lustre/llite/rw26.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
>diff --git a/drivers/staging/lustre/lustre/llite/rw26.c
>b/drivers/staging/lustre/lustre/llite/rw26.c
>index 96c29ad2fc8c..7e3e0967993b 100644
>--- a/drivers/staging/lustre/lustre/llite/rw26.c
>+++ b/drivers/staging/lustre/lustre/llite/rw26.c
>@@ -202,11 +202,8 @@ static inline int ll_get_user_pages(int rw, unsigned
>long user_addr,
> 
>       OBD_ALLOC_LARGE(*pages, *max_pages * sizeof(**pages));
>       if (*pages) {
>-              down_read(&current->mm->mmap_sem);
>-              result = get_user_pages(current, current->mm, user_addr,
>-                                      *max_pages, (rw == READ), 0, *pages,
>-                                      NULL);
>-              up_read(&current->mm->mmap_sem);
>+              result = get_user_pages_fast(user_addr, *max_pages,
>+                                           (rw == READ), *pages);
>               if (unlikely(result <= 0))
>                       OBD_FREE_LARGE(*pages, *max_pages * sizeof(**pages));
>       }


Cheers, Andreas
-- 
Andreas Dilger

Lustre Software Architect
Intel High Performance Data Division


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to