blob: e2c028a7a127f3903af2e9b11e0991e4d95db2c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#!/bin/bash
##############################################################################
## Copyright (c) 2015 Intel Corp.
##
## All rights reserved. This program and the accompanying materials
## are made available under the terms of the Apache License, Version 2.0
## which accompanies this distribution, and is available at
## http://www.apache.org/licenses/LICENSE-2.0
###############################################################################
source host-config
##############################
# Create 1GB pages for guest #
##############################
hugepage_size=`cat /proc/meminfo |grep Hugepagesize |tr -s " "| cut -f 2 -d " "`
if [[ $hugepage_size -ne 1048576 ]]
then
echo "Need 1G huge page support for performance benefit"
exit 1
fi
mkdir -p /mnt/hugetlbfs-1g
mount -t hugetlbfs hugetlbfs /mnt/hugetlbfs-1g -osize=1G
hugepage_dir="/sys/devices/system/node/node${numa_node}/hugepages/hugepages-1048576kB/nr_hugepages"
huge_pages+=`cat $hugepage_dir`
echo ${huge_pages} > ${hugepage_dir}
############################
# RT optimization #
############################
# Disable watchdogs to reduce overhead
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
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/${startVal}$" | cut -d ' ' -f 1`
chrt -fp 3 ${tid}
cpu[$i]=${startVal}
i=`expr $i + 1`
startVal=`expr $startVal + 1`
done
# Change RT priority of rcub kernel threads
for tid in `pgrep -a rcub | cut -d ' ' -f 1` ; do
chrt -fp 3 ${tid}
done
# Disable RT throttling
echo -1 > /proc/sys/kernel/sched_rt_period_us
echo -1 > /proc/sys/kernel/sched_rt_runtime_us
# Reroute interrupts bound to isolated CPUs to CPU 0
for irq in /proc/irq/* ; do
if [ -d ${irq} ] && ! grep - ${irq}/smp_affinity_list > /dev/null ; then
al=`cat ${irq}/smp_affinity_list`
if [[ ${cpu[*]} =~ ${al} ]] ; then
echo 0 > ${irq}/smp_affinity_list
fi
fi
done
# Change the iptable so that we can ssh to the guest remotely
iptables -I INPUT -p tcp --dport 5555 -j ACCEPT
# TODO: download guest disk image from artifactory
|