The patch titled Subject: mm/gup: introduce pin_user_pages_locked() has been removed from the -mm tree. Its filename was mm-gup-introduce-pin_user_pages_locked-v2.patch This patch was dropped because it was folded into mm-gup-introduce-pin_user_pages_locked.patch ------------------------------------------------------ From: John Hubbard <jhubbard@xxxxxxxxxx> Subject: mm/gup: introduce pin_user_pages_locked() add an assert-and-return to the corresponding get_user_pages_locked() call, to keep out any externally set FOLL_PIN flag, Link: http://lkml.kernel.org/r/20200531234131.770697-2-jhubbard@xxxxxxxxxx Signed-off-by: John Hubbard <jhubbard@xxxxxxxxxx> Reviewed-by: David Hildenbrand <david@xxxxxxxxxx> Acked-by: Pankaj Gupta <pankaj.gupta.linux@xxxxxxxxx> Cc: Souptick Joarder <jrdr.linux@xxxxxxxxx> Cc: Daniel Vetter <daniel@xxxxxxxx> Cc: Dave Chinner <david@xxxxxxxxxxxxx> Cc: Jan Kara <jack@xxxxxxx> Cc: Jérôme Glisse <jglisse@xxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/gup.c | 6 ++++++ 1 file changed, 6 insertions(+) --- a/mm/gup.c~mm-gup-introduce-pin_user_pages_locked-v2 +++ a/mm/gup.c @@ -2035,6 +2035,12 @@ long get_user_pages_locked(unsigned long */ if (WARN_ON_ONCE(gup_flags & FOLL_LONGTERM)) return -EINVAL; + /* + * FOLL_PIN must only be set internally by the pin_user_pages*() APIs, + * never directly by the caller, so enforce that: + */ + if (WARN_ON_ONCE(gup_flags & FOLL_PIN)) + return -EINVAL; return __get_user_pages_locked(current, current->mm, start, nr_pages, pages, NULL, locked, _ Patches currently in -mm which might be from jhubbard@xxxxxxxxxx are mm-gup-update-pin_user_pagesrst-for-case-3-mmu-notifiers.patch mm-gup-introduce-pin_user_pages_locked.patch mm-gup-frame_vector-convert-get_user_pages-pin_user_pages.patch mm-gup-documentation-fix-for-pin_user_pages-apis.patch docs-mm-gup-pin_user_pagesrst-add-a-case-5.patch docs-mm-gup-pin_user_pagesrst-add-a-case-5-v2.patch vhost-convert-get_user_pages-pin_user_pages.patch