t; start_test "patch getpid syscall while being heavily hammered"
>
> -for i in $(seq 1 $(getconf _NPROCESSORS_ONLN)); do
> +NPROC=$(getconf _NPROCESSORS_ONLN)
> +MAXPROC=128
> +
> +for i in $(seq 1 $(($NPROC < $MAXPROC ? $NPROC : $MAXPROC))); do
> ./test_klp-call_getpid &
> pids[$i]="$!"
> done
> --
> 2.44.0
>
>
Acked-by: Joel Savitz
tools/testing/selftests/mm/run_vmtests.sh
> @@ -65,6 +65,8 @@ separated by spaces:
> test copy-on-write semantics
> - thp
> test transparent huge pages
> +- hugetlb
> + test hugetlbfs huge pages
> - migration
> invoke move_pages(2) to exercise the mig
ts/mm/run_vmtests.sh
> +++ b/tools/testing/selftests/mm/run_vmtests.sh
> @@ -334,8 +334,6 @@ CATEGORY="ksm_numa" run_test ./ksm_tests -N -m 0
>
> CATEGORY="ksm" run_test ./ksm_functional_tests
>
> -run_test ./ksm_functional_tests
> -
> # protection_keys tests
> if [ -x ./protection_keys_32 ]
> then
> --
> 2.41.0
>
Acked-by: Joel Savitz