The quilt patch titled Subject: selftests/vm: add protection_keys tests to run_vmtests has been removed from the -mm tree. Its filename was selftests-vm-add-protection_keys-tests-to-run_vmtests.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Kalpana Shetty <kalpana.shetty@xxxxxxx> Subject: selftests/vm: add protection_keys tests to run_vmtests Date: Tue, 31 May 2022 15:55:56 +0530 Add "protected_keys" tests to "run_vmtests.sh" would help run all VM related tests from a single shell script. [kalpana.shetty@xxxxxxx: Shuah Khan's review comments incorporated, added -x executable check] Link: https://lkml.kernel.org/r/20220617202931.357-1-kalpana.shetty@xxxxxxx Link: https://lkml.kernel.org/r/20220610090704.296-1-kalpana.shetty@xxxxxxx Link: https://lkml.kernel.org/r/20220531102556.388-1-kalpana.shetty@xxxxxxx Signed-off-by: Kalpana Shetty <kalpana.shetty@xxxxxxx> Cc: Shuah Khan <shuah@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/testing/selftests/vm/run_vmtests.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) --- a/tools/testing/selftests/vm/run_vmtests.sh~selftests-vm-add-protection_keys-tests-to-run_vmtests +++ a/tools/testing/selftests/vm/run_vmtests.sh @@ -179,4 +179,15 @@ run_test ./ksm_tests -N -m 1 # KSM test with 2 NUMA nodes and merge_across_nodes = 0 run_test ./ksm_tests -N -m 0 +# protection_keys tests +if [ -x ./protection_keys_32 ] +then + run_test ./protection_keys_32 +fi + +if [ -x ./protection_keys_64 ] +then + run_test ./protection_keys_64 +fi + exit $exitcode _ Patches currently in -mm which might be from kalpana.shetty@xxxxxxx are