Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1675315 > unrolled thread
| Started by | Po-Hsu Lin <po-hsu.lin@canonical.com> |
|---|---|
| First post | 2017-06-27 08:20 +0200 |
| Last post | 2017-06-27 08:20 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCHv2 1/5] selftests: typo correction for memory-hotplug test Po-Hsu Lin <po-hsu.lin@canonical.com> - 2017-06-27 08:20 +0200
| From | Po-Hsu Lin <po-hsu.lin@canonical.com> |
|---|---|
| Date | 2017-06-27 08:20 +0200 |
| Subject | [PATCHv2 1/5] selftests: typo correction for memory-hotplug test |
| Message-ID | <tWS0V-4W7-1@gated-at.bofh.it> |
Typo fixed for hotpluggable_offline_memory() in memory-hotplug test.
Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
---
.../selftests/memory-hotplug/mem-on-off-test.sh | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh b/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh
index 6cddde0..a8d8587 100755
--- a/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh
+++ b/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh
@@ -39,7 +39,7 @@ hotpluggable_memory()
done
}
-hotplaggable_offline_memory()
+hotpluggable_offline_memory()
{
hotpluggable_memory offline
}
@@ -150,7 +150,7 @@ echo -e "\t online all hotplug memory in offline state"
#
# Online all hot-pluggable memory
#
-for memory in `hotplaggable_offline_memory`; do
+for memory in `hotpluggable_offline_memory`; do
echo offline-online $memory
online_memory_expect_success $memory
done
@@ -168,7 +168,7 @@ done
#
# Online all hot-pluggable memory again
#
-for memory in `hotplaggable_offline_memory`; do
+for memory in `hotpluggable_offline_memory`; do
echo offline-online $memory
online_memory_expect_success $memory
done
@@ -214,7 +214,7 @@ done
# Test memory hot-add error handling (offline => online)
#
echo $error > $NOTIFIER_ERR_INJECT_DIR/actions/MEM_GOING_ONLINE/error
-for memory in `hotplaggable_offline_memory`; do
+for memory in `hotpluggable_offline_memory`; do
online_memory_expect_fail $memory
done
@@ -222,7 +222,7 @@ done
# Online all hot-pluggable memory
#
echo 0 > $NOTIFIER_ERR_INJECT_DIR/actions/MEM_GOING_ONLINE/error
-for memory in `hotplaggable_offline_memory`; do
+for memory in `hotpluggable_offline_memory`; do
online_memory_expect_success $memory
done
--
1.7.9.5
Back to top | Article view | linux.kernel
csiph-web