Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1486581 > unrolled thread
| Started by | Cornelia Huck <cornelia.huck@de.ibm.com> |
|---|---|
| First post | 2016-09-19 17:10 +0200 |
| Last post | 2016-09-19 17:10 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH 0/2] virtio-ringtest: more enablement Cornelia Huck <cornelia.huck@de.ibm.com> - 2016-09-19 17:10 +0200
[PATCH 1/2] tools/virtio/ringtest: fix run-on-all.sh for offline cpus Cornelia Huck <cornelia.huck@de.ibm.com> - 2016-09-19 17:10 +0200
| From | Cornelia Huck <cornelia.huck@de.ibm.com> |
|---|---|
| Date | 2016-09-19 17:10 +0200 |
| Subject | [PATCH 0/2] virtio-ringtest: more enablement |
| Message-ID | <sj8mJ-71A-11@gated-at.bofh.it> |
Hi Michael, here are two patches by Halil so that we can get ringtest going on our platform as well. Question: Do you have an idea on how realistic the timings are supposed to be? The s390 path is, well, 'tweak me'... Halil Pasic (2): tools/virtio/ringtest: fix run-on-all.sh for offline cpus tools/virtio/ringtest: tweaks for s390 tools/virtio/ringtest/main.h | 12 ++++++++++++ tools/virtio/ringtest/run-on-all.sh | 5 +++-- 2 files changed, 15 insertions(+), 2 deletions(-) -- 2.8.4
[toc] | [next] | [standalone]
| From | Cornelia Huck <cornelia.huck@de.ibm.com> |
|---|---|
| Date | 2016-09-19 17:10 +0200 |
| Subject | [PATCH 1/2] tools/virtio/ringtest: fix run-on-all.sh for offline cpus |
| Message-ID | <sj8mJ-71A-21@gated-at.bofh.it> |
| In reply to | #1486581 |
From: Halil Pasic <pasic@linux.vnet.ibm.com>
Since ef1b144d ("tools/virtio/ringtest: fix run-on-all.sh to work
without /dev/cpu") run-on-all.sh uses seq 0 $HOST_AFFINITY as the list
of ids of the CPUs to run the command on (assuming ids of online CPUs
are consecutive and start from 0), where $HOST_AFFINITY is the highest
CPU id in the system previously determined using lscpu. This can fail
on systems with offline CPUs.
Instead let's use lscpu to determine the list of online CPUs.
Signed-off-by: Halil Pasic <pasic@linux.vnet.ibm.com>
Fixes: ef1b144d ("tools/virtio/ringtest: fix run-on-all.sh to work without
/dev/cpu")
Reviewed-by: Sascha Silbe <silbe@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
tools/virtio/ringtest/run-on-all.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tools/virtio/ringtest/run-on-all.sh b/tools/virtio/ringtest/run-on-all.sh
index 2e69ca8..29b0d39 100755
--- a/tools/virtio/ringtest/run-on-all.sh
+++ b/tools/virtio/ringtest/run-on-all.sh
@@ -1,12 +1,13 @@
#!/bin/sh
+CPUS_ONLINE=$(lscpu --online -p=cpu|grep -v -e '#')
#use last CPU for host. Why not the first?
#many devices tend to use cpu0 by default so
#it tends to be busier
-HOST_AFFINITY=$(lscpu -p=cpu | tail -1)
+HOST_AFFINITY=$(echo "${CPUS_ONLINE}"|tail -n 1)
#run command on all cpus
-for cpu in $(seq 0 $HOST_AFFINITY)
+for cpu in $CPUS_ONLINE
do
#Don't run guest and host on same CPU
#It actually works ok if using signalling
--
2.8.4
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web