* [to-be-updated] fix-zero-copy-i-o-on-__get_user_pages-allocated-pages.patch removed from -mm tree
@ 2025-05-08 22:28 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-05-08 22:28 UTC (permalink / raw)
To: mm-commits, wade.farnsworth, peterx, jhubbard, jgg, david,
c.briere, artem.k, p.antoniou, akpm
The quilt patch titled
Subject: Fix zero copy I/O on __get_user_pages allocated pages
has been removed from the -mm tree. Its filename was
fix-zero-copy-i-o-on-__get_user_pages-allocated-pages.patch
This patch was dropped because an updated version will be issued
------------------------------------------------------
From: Pantelis Antoniou <p.antoniou@partner.samsung.com>
Subject: Fix zero copy I/O on __get_user_pages allocated pages
Date: Wed, 7 May 2025 10:41:05 -0500
Recent updates to net filesystems enabled zero copy operations, which
require getting a user space page pinned.
This does not work for pages that were allocated via __get_user_pages and
then mapped to user-space via remap_pfn_rage.
remap_pfn_range_internal() will turn on VM_IO | VM_PFNMAP vma bits.
VM_PFNMAP in particular mark the pages as not having struct_page
associated with them, which is not the case for __get_user_pages()
This in turn makes any attempt to lock a page fail, and breaking I/O from
that address range.
This patch address it by special casing pages in those VMAs and not
calling vm_normal_page() for them.
Link: https://lkml.kernel.org/r/20250507154105.763088-2-p.antoniou@partner.samsung.com
Signed-off-by: Pantelis Antoniou <p.antoniou@partner.samsung.com>
Cc: Artem Krupotkin <artem.k@samsung.com>
Cc: Charles Briere <c.briere@samsung.com>
Cc: Wade Farnsworth <wade.farnsworth@siemens.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Jason Gunthorpe <jgg@ziepe.ca>
Cc: John Hubbard <jhubbard@nvidia.com>
Cc: Peter Xu <peterx@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/gup.c | 22 ++++++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
--- a/mm/gup.c~fix-zero-copy-i-o-on-__get_user_pages-allocated-pages
+++ a/mm/gup.c
@@ -833,6 +833,20 @@ static inline bool can_follow_write_pte(
return !userfaultfd_pte_wp(vma, pte);
}
+static struct page *gup_normal_page(struct vm_area_struct *vma,
+ unsigned long address, pte_t pte)
+{
+ unsigned long pfn;
+
+ if (vma->vm_flags & (VM_MIXEDMAP | VM_PFNMAP)) {
+ pfn = pte_pfn(pte);
+ if (!pfn_valid(pfn) || is_zero_pfn(pfn) || pfn > highest_memmap_pfn)
+ return NULL;
+ return pfn_to_page(pfn);
+ }
+ return vm_normal_page(vma, address, pte);
+}
+
static struct page *follow_page_pte(struct vm_area_struct *vma,
unsigned long address, pmd_t *pmd, unsigned int flags,
struct dev_pagemap **pgmap)
@@ -858,7 +872,9 @@ static struct page *follow_page_pte(stru
if (pte_protnone(pte) && !gup_can_follow_protnone(vma, flags))
goto no_page;
- page = vm_normal_page(vma, address, pte);
+ page = gup_normal_page(vma, address, pte);
+ if (page && (vma->vm_flags & (VM_MIXEDMAP | VM_PFNMAP)))
+ (void)follow_pfn_pte(vma, address, ptep, flags);
/*
* We only care about anon pages in can_follow_write_pte() and don't
@@ -1130,7 +1146,7 @@ static int get_gate_page(struct mm_struc
*vma = get_gate_vma(mm);
if (!page)
goto out;
- *page = vm_normal_page(*vma, address, entry);
+ *page = gup_normal_page(*vma, address, entry);
if (!*page) {
if ((gup_flags & FOLL_DUMP) || !is_zero_pfn(pte_pfn(entry)))
goto unmap;
@@ -1271,8 +1287,6 @@ static int check_vma_flags(struct vm_are
int foreign = (gup_flags & FOLL_REMOTE);
bool vma_anon = vma_is_anonymous(vma);
- if (vm_flags & (VM_IO | VM_PFNMAP))
- return -EFAULT;
if ((gup_flags & FOLL_ANON) && !vma_anon)
return -EFAULT;
_
Patches currently in -mm which might be from p.antoniou@partner.samsung.com are
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-05-08 22:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-08 22:28 [to-be-updated] fix-zero-copy-i-o-on-__get_user_pages-allocated-pages.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.