]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
x86: Document get_user_pages_fast()
authorAndy Grover <andy.grover@oracle.com>
Thu, 9 Apr 2009 23:45:29 +0000 (16:45 -0700)
committerIngo Molnar <mingo@elte.hu>
Fri, 10 Apr 2009 11:14:08 +0000 (13:14 +0200)
While better than get_user_pages(), the usage of gupf(),
especially the return values and the fact that it can
potentially only partially pin the range, warranted some
documentation.

Signed-off-by: Andy Grover <andy.grover@oracle.com>
Cc: npiggin@suse.de
Cc: akpm@linux-foundation.org
LKML-Reference: <1239320729-3262-1-git-send-email-andy.grover@oracle.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/mm/gup.c

index be54176e9eb2ee3fa374d6bdc55ed917a4ea4106..6340cef6798af12c994ae6d23ac3f5df73e43d52 100644 (file)
@@ -219,6 +219,22 @@ static int gup_pud_range(pgd_t pgd, unsigned long addr, unsigned long end,
        return 1;
 }
 
+/**
+ * get_user_pages_fast() - pin user pages in memory
+ * @start:     starting user address
+ * @nr_pages:  number of pages from start to pin
+ * @write:     whether pages will be written to
+ * @pages:     array that receives pointers to the pages pinned.
+ *             Should be at least nr_pages long.
+ *
+ * Attempt to pin user pages in memory without taking mm->mmap_sem.
+ * If not successful, it will fall back to taking the lock and
+ * calling get_user_pages().
+ *
+ * Returns number of pages pinned. This may be fewer than the number
+ * requested. If nr_pages is 0 or negative, returns 0. If no pages
+ * were pinned, returns -errno.
+ */
 int get_user_pages_fast(unsigned long start, int nr_pages, int write,
                        struct page **pages)
 {