The quilt patch titled Subject: selftests/mm: run_vmtests: use correct flag in the code has been removed from the -mm tree. Its filename was selftests-mm-run_vmtestssh-add-missing-tests-fix.patch This patch was dropped because it was folded into selftests-mm-run_vmtestssh-add-missing-tests.patch ------------------------------------------------------ From: Muhammad Usama Anjum <usama.anjum@xxxxxxxxxxxxx> Subject: selftests/mm: run_vmtests: use correct flag in the code Date: Thu, 1 Feb 2024 18:05:37 +0500 Use correct -d flag as mentioned in comments for destructive tests. Rename variable and update comment for some clarification. Link: https://lkml.kernel.org/r/20240201130538.1404897-2-usama.anjum@xxxxxxxxxxxxx Fixes: cc7b9955344c ("selftests/mm: run_vmtests.sh: add missing tests") Signed-off-by: Muhammad Usama Anjum <usama.anjum@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/testing/selftests/mm/run_vmtests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/tools/testing/selftests/mm/run_vmtests.sh~selftests-mm-run_vmtestssh-add-missing-tests-fix +++ a/tools/testing/selftests/mm/run_vmtests.sh @@ -15,7 +15,7 @@ usage() { cat <<EOF usage: ${BASH_SOURCE[0]:-$0} [ options ] - -a: run all tests, including extra ones + -a: run all tests, including extra ones (other than destructive ones) -t: specify specific categories to tests to run -h: display this message -n: disable TAP output @@ -80,7 +80,7 @@ EOF } RUN_ALL=false -RUN_DESTRUCTIVE_TEST=false +RUN_DESTRUCTIVE=false TAP_PREFIX="# " while getopts "aht:n" OPT; do @@ -89,7 +89,7 @@ while getopts "aht:n" OPT; do "h") usage ;; "t") VM_SELFTEST_ITEMS=${OPTARG} ;; "n") TAP_PREFIX= ;; - "a") RUN_DESTRUCTIVE_TEST=true ;; + "d") RUN_DESTRUCTIVE=true ;; esac done shift $((OPTIND -1)) @@ -314,7 +314,7 @@ CATEGORY="mremap" run_test ./mremap_test CATEGORY="hugetlb" run_test ./thuge-gen CATEGORY="hugetlb" run_test ./charge_reserved_hugetlb.sh -cgroup-v2 CATEGORY="hugetlb" run_test ./hugetlb_reparenting_test.sh -cgroup-v2 -if $RUN_DESTRUCTIVE_TEST; then +if $RUN_DESTRUCTIVE; then CATEGORY="hugetlb" run_test ./hugetlb-read-hwpoison fi _ Patches currently in -mm which might be from usama.anjum@xxxxxxxxxxxxx are selftests-mm-hugetlb_reparenting_test-do-not-unmount.patch selftests-mm-run_vmtests-remove-sudo-and-conform-to-tap.patch selftests-mm-save-and-restore-nr_hugepages-value.patch selftests-mm-protection_keys-save-restore-nr_hugepages-settings.patch selftests-mm-run_vmtestssh-add-missing-tests.patch