aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh
diff options
context:
space:
mode:
authorZhao Gongyi <zhaogongyi@huawei.com>2022-09-05 21:36:14 +0800
committerShuah Khan <skhan@linuxfoundation.org>2022-10-05 11:05:18 -0600
commit51d4c851465c32143d9c7b1cfb46fc581922b116 (patch)
treeef2fd2264577258987bd1bd216f9ba0f50484e89 /tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh
parentselftests/cpu-hotplug: Delete fault injection related code (diff)
downloadwireguard-linux-51d4c851465c32143d9c7b1cfb46fc581922b116.tar.xz
wireguard-linux-51d4c851465c32143d9c7b1cfb46fc581922b116.zip
selftests/cpu-hotplug: Reserve one cpu online at least
Considering that we can not offline all cpus in any cases, we need to reserve one cpu online when the test offline all hotpluggable online cpus, otherwise the test will fail forever. Fixes: d89dffa976bc ("fault-injection: add selftests for cpu and memory hotplug") Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh')
-rwxr-xr-xtools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh40
1 files changed, 22 insertions, 18 deletions
diff --git a/tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh b/tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh
index 184156763ccb..d5dc7e0dc726 100755
--- a/tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh
+++ b/tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh
@@ -149,6 +149,25 @@ offline_cpu_expect_fail()
fi
}
+online_all_hot_pluggable_cpus()
+{
+ for cpu in `hotplaggable_offline_cpus`; do
+ online_cpu_expect_success $cpu
+ done
+}
+
+offline_all_hot_pluggable_cpus()
+{
+ local reserve_cpu=$online_max
+ for cpu in `hotpluggable_online_cpus`; do
+ # Reserve one cpu oneline at least.
+ if [ $cpu -eq $reserve_cpu ];then
+ continue
+ fi
+ offline_cpu_expect_success $cpu
+ done
+}
+
allcpus=0
online_cpus=0
online_max=0
@@ -197,25 +216,10 @@ else
echo -e "\t online all offline cpus"
fi
-#
-# Online all hot-pluggable CPUs
-#
-for cpu in `hotplaggable_offline_cpus`; do
- online_cpu_expect_success $cpu
-done
+online_all_hot_pluggable_cpus
-#
-# Offline all hot-pluggable CPUs
-#
-for cpu in `hotpluggable_online_cpus`; do
- offline_cpu_expect_success $cpu
-done
+offline_all_hot_pluggable_cpus
-#
-# Online all hot-pluggable CPUs again
-#
-for cpu in `hotplaggable_offline_cpus`; do
- online_cpu_expect_success $cpu
-done
+online_all_hot_pluggable_cpus
exit $retval