21f5eda9b8
Sinceef1b144d
("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>
26 lines
635 B
Bash
Executable File
26 lines
635 B
Bash
Executable File
#!/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=$(echo "${CPUS_ONLINE}"|tail -n 1)
|
|
|
|
#run command on all cpus
|
|
for cpu in $CPUS_ONLINE
|
|
do
|
|
#Don't run guest and host on same CPU
|
|
#It actually works ok if using signalling
|
|
if
|
|
(echo "$@" | grep -e "--sleep" > /dev/null) || \
|
|
test $HOST_AFFINITY '!=' $cpu
|
|
then
|
|
echo "GUEST AFFINITY $cpu"
|
|
"$@" --host-affinity $HOST_AFFINITY --guest-affinity $cpu
|
|
fi
|
|
done
|
|
echo "NO GUEST AFFINITY"
|
|
"$@" --host-affinity $HOST_AFFINITY
|
|
echo "NO AFFINITY"
|
|
"$@"
|