summaryrefslogtreecommitdiffstats
path: root/ci/envs/host-setup1.sh
diff options
context:
space:
mode:
authorshravani <shravani.p@tcs.com>2016-12-09 17:57:27 +0530
committershravani <shravani.p@tcs.com>2016-12-13 15:45:58 +0530
commit75f93c362f8cde64b02e243d26bf9061f48adc34 (patch)
treed9911cda3662059b9cfff7be89eed1e7529fd73f /ci/envs/host-setup1.sh
parent9bdeee16856c2d934ef331e8b1c118146e0ec714 (diff)
This patch includes scripts to create multiple yaml file for different
environments and run cyclictest. Also contains updated interface scripts to trigger packetforwarding and cyclictest stress scripts. Change-Id: Ibb8694746f8b19d605e50ea07c2be8b2bd141ec0 Co-Authored-By: Y Rajitha <y.rajitha@tcs.com> Co-Authored-By: Gundarapu Kalyan Reddy <reddyx.gundarapu@intel.com> Signed-off-by: Shravani <shravani.p@tcs.com>
Diffstat (limited to 'ci/envs/host-setup1.sh')
-rwxr-xr-xci/envs/host-setup1.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/ci/envs/host-setup1.sh b/ci/envs/host-setup1.sh
index 3d2de6ddf..e2c028a7a 100755
--- a/ci/envs/host-setup1.sh
+++ b/ci/envs/host-setup1.sh
@@ -39,16 +39,19 @@ echo 0 > /proc/sys/kernel/watchdog
echo 0 > /proc/sys/kernel/nmi_watchdog
# Change RT priority of ksoftirqd and rcuc kernel threads on isolated CPUs
+startVal=$(echo ${host_isolcpus} | cut -f1 -d-)
+endVal=$(echo ${host_isolcpus} | cut -f2 -d-)
i=0
-for c in `echo $host_isolcpus | sed 's/,/ /g'` ; do
- tid=`pgrep -a ksoftirq | grep "ksoftirqd/${c}$" | cut -d ' ' -f 1`
+while [ ${startVal} -lt ${endVal} ]; do
+ tid=`pgrep -a ksoftirq | grep "ksoftirqd/${startVal}$" | cut -d ' ' -f 1`
chrt -fp 2 ${tid}
- tid=`pgrep -a rcuc | grep "rcuc/${c}$" | cut -d ' ' -f 1`
+ tid=`pgrep -a rcuc | grep "rcuc/${startVal}$" | cut -d ' ' -f 1`
chrt -fp 3 ${tid}
- cpu[$i]=${c}
+ cpu[$i]=${startVal}
i=`expr $i + 1`
+ startVal=`expr $startVal + 1`
done
# Change RT priority of rcub kernel threads