The quilt patch titled Subject: mm: fix typos in !memfd inline stub has been removed from the -mm tree. Its filename was mm-perform-all-memfd-seal-checks-in-a-single-place-fix.patch This patch was dropped because it was folded into mm-perform-all-memfd-seal-checks-in-a-single-place.patch ------------------------------------------------------ From: Lorenzo Stoakes <lorenzo.stoakes@xxxxxxxxxx> Subject: mm: fix typos in !memfd inline stub Date: Mon, 9 Dec 2024 11:04:08 +0000 I typo'd the declaration of memfd_check_seals_mmap() in the case where CONFIG_MEMFD_CREATE is not defined, resulting in build failures. Fix this, and correct the misspelling of vm_flags which should be vm_flags_ptr at the same time. Link: https://lkml.kernel.org/r/7dee6c5d-480b-4c24-b98e-6fa47dbd8a23@lucifer.local Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/memfd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/include/linux/memfd.h~mm-perform-all-memfd-seal-checks-in-a-single-place-fix +++ a/include/linux/memfd.h @@ -24,7 +24,8 @@ static inline struct folio *memfd_alloc_ { return ERR_PTR(-EINVAL); } -int memfd_check_seals_mmap(struct file *file, unsigned long *vm_flags) +static inline int memfd_check_seals_mmap(struct file *file, + unsigned long *vm_flags_ptr) { return 0; } _ Patches currently in -mm which might be from lorenzo.stoakes@xxxxxxxxxx are mm-vma-move-brk-internals-to-mm-vmac.patch mm-vma-move-unmapped_area-internals-to-mm-vmac.patch mm-abstract-get_arg_page-stack-expansion-and-mmap-read-lock.patch mm-vma-move-stack-expansion-logic-to-mm-vmac.patch mm-vma-move-__vm_munmap-to-mm-vmac.patch selftests-mm-add-fork-cow-guard-page-test.patch mm-enforce-__must_check-on-vma-merge-and-split.patch mm-perform-all-memfd-seal-checks-in-a-single-place.patch maintainers-update-memory-mapping-section.patch mm-assert-mmap-write-lock-held-on-do_mmap-mmap_region.patch mm-add-comments-to-do_mmap-mmap_region-and-vm_mmap.patch tools-testing-add-simple-__mmap_region-userland-test.patch mm-debug-introduce-vm_warn_on_vmg-to-dump-vma-merge-state.patch mm-debug-prefer-vm_warn_on_vmg-to-report-vmg-debug-warnings.patch mips-vdso-prefer-do_mmap-to-mmap_region.patch mm-make-mmap_region-internal.patch