The patch titled Subject: net/xdp: convert put_page() to put_user_page*() has been added to the -mm tree. Its filename is net-xdp-convert-put_page-to-put_user_page.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/net-xdp-convert-put_page-to-put_user_page.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/net-xdp-convert-put_page-to-put_user_page.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: John Hubbard <jhubbard@xxxxxxxxxx> Subject: net/xdp: convert put_page() to put_user_page*() For pages that were retained via get_user_pages*(), release those pages via the new put_user_page*() routines, instead of via put_page() or release_pages(). This is part a tree-wide conversion, as described in fc1d8e7cca2d ("mm: introduce put_user_page*(), placeholder versions"). Link: http://lkml.kernel.org/r/20190724044537.10458-4-jhubbard@xxxxxxxxxx Signed-off-by: John Hubbard <jhubbard@xxxxxxxxxx> Cc: Björn Töpel <bjorn.topel@xxxxxxxxx> Cc: Magnus Karlsson <magnus.karlsson@xxxxxxxxx> Cc: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/xdp/xdp_umem.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) --- a/net/xdp/xdp_umem.c~net-xdp-convert-put_page-to-put_user_page +++ a/net/xdp/xdp_umem.c @@ -166,14 +166,7 @@ void xdp_umem_clear_dev(struct xdp_umem static void xdp_umem_unpin_pages(struct xdp_umem *umem) { - unsigned int i; - - for (i = 0; i < umem->npgs; i++) { - struct page *page = umem->pgs[i]; - - set_page_dirty_lock(page); - put_page(page); - } + put_user_pages_dirty_lock(umem->pgs, umem->npgs, true); kfree(umem->pgs); umem->pgs = NULL; _ Patches currently in -mm which might be from jhubbard@xxxxxxxxxx are mm-gup-add-make_dirty-arg-to-put_user_pages_dirty_lock.patch drivers-gpu-drm-via-convert-put_page-to-put_user_page.patch net-xdp-convert-put_page-to-put_user_page.patch