]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mm/gup: use gup_can_follow_protnone() also in GUP-fast
authorDavid Hildenbrand <david@redhat.com>
Thu, 25 Aug 2022 16:46:58 +0000 (18:46 +0200)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 26 Aug 2022 05:03:30 +0000 (22:03 -0700)
There seems to be no reason why FOLL_FORCE during GUP-fast would have to
fallback to the slow path when stumbling over a PROT_NONE mapped page.  We
only have to trigger hinting faults in case FOLL_FORCE is not set, and any
kind of fault handling naturally happens from the slow path -- where NUMA
hinting accounting/handling would be performed.

Note that the comment regarding THP migration is outdated: commit
2b4847e73004 ("mm: numa: serialise parallel get_user_page against THP
migration") described that this was required for THP due to lack of PMD
migration entries.  Nowadays, we do have proper PMD migration entries in
place -- see set_pmd_migration_entry(), which does a proper
pmdp_invalidate() when placing the migration entry.

So let's just reuse gup_can_follow_protnone() here to make it consistent
and drop the somewhat outdated comments.

Link: https://lkml.kernel.org/r/20220825164659.89824-3-david@redhat.com
Signed-off-by: David Hildenbrand <david@redhat.com>
Cc: Andrea Arcangeli <aarcange@redhat.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Jason Gunthorpe <jgg@nvidia.com>
Cc: John Hubbard <jhubbard@nvidia.com>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Peter Xu <peterx@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/gup.c

index 0dca1b494c9702ed47101690c3b4209fb0b00734..ad59c796d4d3d39895fe4adc04e06381c72e21db 100644 (file)
--- a/mm/gup.c
+++ b/mm/gup.c
@@ -2391,11 +2391,7 @@ static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
                struct page *page;
                struct folio *folio;
 
-               /*
-                * Similar to the PMD case below, NUMA hinting must take slow
-                * path using the pte_protnone check.
-                */
-               if (pte_protnone(pte))
+               if (pte_protnone(pte) && !gup_can_follow_protnone(flags))
                        goto pte_unmap;
 
                if (!pte_access_permitted(pte, flags & FOLL_WRITE))
@@ -2777,12 +2773,8 @@ static int gup_pmd_range(pud_t *pudp, pud_t pud, unsigned long addr, unsigned lo
 
                if (unlikely(pmd_trans_huge(pmd) || pmd_huge(pmd) ||
                             pmd_devmap(pmd))) {
-                       /*
-                        * NUMA hinting faults need to be handled in the GUP
-                        * slowpath for accounting purposes and so that they
-                        * can be serialised against THP migration.
-                        */
-                       if (pmd_protnone(pmd))
+                       if (pmd_protnone(pmd) &&
+                           !gup_can_follow_protnone(flags))
                                return 0;
 
                        if (!gup_huge_pmd(pmd, pmdp, addr, next, flags,