The patch titled Subject: mm-vma-return-the-exact-errno-in-vms_gather_munmap_vmas-fix has been added to the -mm mm-unstable branch. Its filename is mm-vma-return-the-exact-errno-in-vms_gather_munmap_vmas-fix.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-vma-return-the-exact-errno-in-vms_gather_munmap_vmas-fix.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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 via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-vma-return-the-exact-errno-in-vms_gather_munmap_vmas-fix Date: Mon Sep 9 12:04:14 PM PDT 2024 fix whitespace, per Liam Cc: "Liam R. Howlett" <Liam.Howlett@xxxxxxxxxx> Cc: Lorenzo Stoakes <lorenzo.stoakes@xxxxxxxxxx> Cc: Xiao Yang <ice_yangxiao@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vma.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/mm/vma.c~mm-vma-return-the-exact-errno-in-vms_gather_munmap_vmas-fix +++ a/mm/vma.c @@ -1260,7 +1260,8 @@ int vms_gather_munmap_vmas(struct vma_mu * split, despite we could. This is unlikely enough * failure that it's not worth optimizing it for. */ - error = userfaultfd_unmap_prep(next, vms->start, vms->end, vms->uf); + error = userfaultfd_unmap_prep(next, vms->start, + vms->end, vms->uf); if (error) goto userfaultfd_error; } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-count-the-number-of-anonymous-thps-per-size-fix.patch mm-shmem-extend-shmem_unused_huge_shrink-to-all-sizes-fix.patch mm-hugetlb-sort-out-global-lock-annotations-fix.patch mm-hugetlb-sort-out-global-lock-annotations-fix-fix.patch mmtmpfs-consider-end-of-file-write-in-shmem_is_huge-checkpatch-fixes.patch mm-page_alloc-fix-build-with-config_unaccepted_memory=n.patch mm-vma-return-the-exact-errno-in-vms_gather_munmap_vmas-fix.patch