summaryrefslogtreecommitdiffstats
path: root/ci/envs/host-config
diff options
context:
space:
mode:
authorshravani <shravani.p@tcs.com>2016-11-10 11:17:52 +0530
committershravani <shravani.p@tcs.com>2016-11-15 16:47:23 +0530
commit8c58d294fb3a6b374579680ef3788fadb78269f9 (patch)
tree3d0a59787072c85e22dd1191c23af6682c809358 /ci/envs/host-config
parentff067418f34c3670cbab67587d8ab0dc0c8f1acc (diff)
This patch contains scripts to update the host_isolcpus parameter
to Numa node1 CPU's,binds the qemu process threads to the host_isolcpu processors and assigns the remaining isolcpus to run stress tool Change-Id: I894fd18666c1e9c041776c346b7b95abce808792 Signed-off-by: Shravani <shravani.p@tcs.com>
Diffstat (limited to 'ci/envs/host-config')
-rwxr-xr-x[-rw-r--r--]ci/envs/host-config24
1 files changed, 20 insertions, 4 deletions
diff --git a/ci/envs/host-config b/ci/envs/host-config
index ce6243ce0..a6beb06b6 100644..100755
--- a/ci/envs/host-config
+++ b/ci/envs/host-config
@@ -1,3 +1,5 @@
+#!/bin/bash
+
##############################################################################
## Copyright (c) 2015 Intel Corp.
##
@@ -7,13 +9,27 @@
## http://www.apache.org/licenses/LICENSE-2.0
###############################################################################
-# Isolated cpus for nfv, must be delimited with ','
-host_isolcpus=3,4
-
# Number of huge pages to create and on which NUMA node
-numa_node=0
+numa_node=1
huge_pages=2
# QEMU executable path and number of cpus for guest
qemu=/usr/libexec/qemu-kvm
guest_cpus=2
+
+# Isolated cpus for nfv, must be given as a range '-' and Numa node1 CPU's should be considered
+host_isolcpus=`lscpu | grep "NUMA node1 CPU(s)"| awk -F ':' '{print \$2}' | sed 's/[[:space:]]//g'`
+first=$(echo ${host_isolcpus} | cut -f1 -d-)
+last=$(echo ${host_isolcpus} | cut -f2 -d-)
+
+# Bind cpus from host_isolcpus range for QEMU processor threads
+i=0
+while [ ${i} -lt ${guest_cpus} ]; do
+ qemu_cpu[$i]=${first}
+ i=`expr $i + 1`
+ first=`expr $first + 1`
+done
+
+#Isolated cpus from host_isolcpus range to run Stress tool
+stress_isolcpus=${first}-${last}
+echo "Stress tool runs on $stress_isolcpus"