The quilt patch titled Subject: selftest mm/mseal: fix arm build has been removed from the -mm tree. Its filename was selftest-mm-mseal-read-only-elf-memory-segment-fix-4.patch This patch was dropped because it was folded into selftest-mm-mseal-read-only-elf-memory-segment.patch ------------------------------------------------------ From: Jeff Xu <jeffxu@xxxxxxxxxxxx> Subject: selftest mm/mseal: fix arm build Date: Thu, 2 May 2024 22:53:31 +0000 Add include linux/mman.h to fix arm build. Fix a typo. Link: https://lkml.kernel.org/r/20240502225331.3806279-2-jeffxu@xxxxxxxxxxxx Signed-off-by: Jeff Xu <jeffxu@xxxxxxxxxxxx> Suggested-by: Ryan Roberts <ryan.roberts@xxxxxxx> Tested-by: Ryan Roberts <ryan.roberts@xxxxxxx> Reviewed-by: Ryan Roberts <ryan.roberts@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/testing/selftests/mm/mseal_test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/tools/testing/selftests/mm/mseal_test.c~selftest-mm-mseal-read-only-elf-memory-segment-fix-4 +++ a/tools/testing/selftests/mm/mseal_test.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 #define _GNU_SOURCE +#include <linux/mman.h> #include <sys/mman.h> #include <stdint.h> #include <unistd.h> @@ -29,7 +30,7 @@ # define PKEY_DISABLE_WRITE 0x2 #endif -#ifndef PKEY_BITS_PER_KEY +#ifndef PKEY_BITS_PER_PKEY #define PKEY_BITS_PER_PKEY 2 #endif _ Patches currently in -mm which might be from jeffxu@xxxxxxxxxxxx are mseal-wire-up-mseal-syscall.patch mseal-add-mseal-syscall.patch selftest-mm-mseal-memory-sealing.patch mseal-add-documentation.patch selftest-mm-mseal-read-only-elf-memory-segment.patch