-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoprofile-init.sh
executable file
·53 lines (46 loc) · 1.7 KB
/
oprofile-init.sh
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
#!/bin/bash
#This has to be run as root
#parsing arguments
if [ $# -ne 1 ]; then
echo $#
echo "Usage: $0 \"test directory\""
exit 0
fi
test_dir="$1"
#read config file
use_operf="$( cat "$test_dir/wrstat.config" | grep "oprofile_use_operf" | cut -d " " -f 2-)"
use_operf=${use_operf,,}
vmlinux="$( cat "$test_dir/wrstat.config" | grep "oprofile_vmlinux" | cut -d " " -f 2-)"
event="$( cat "$test_dir/wrstat.config" | grep "oprofile_event" | cut -d " " -f 2-)"
rm -rf "$test_dir/oprofile_data/" &>/dev/null
mkdir "$test_dir/oprofile_data/"
#check if we should use operf or opcontrol (deprecated)
if [ $use_operf == "true" ]; then
if [ "$(which operf 2>/dev/null)" != "" ]; then
#starting operf
if [ "$vmlinux" == "" ];then
operf --system-wide --separate-cpu --session-dir="$test_dir/oprofile_data/" --events="$event"&
else
ln -sf "$vmlinux" "$test_dir/vmlinux"
operf --system-wide --separate-cpu --vmlinux="$test_dir/vmlinux" --session-dir="$test_dir/oprofile_data/" --events="$event"&
fi
echo $! > "$test_dir/operf.pid"
fi
#opcontrol
else
if [ "$(which opcontrol 2>/dev/null)" != "" ]; then
echo "starting oprofile"
opcontrol --reset
opcontrol --deinit
# modprobe oprofile timer=1
echo 0 > /proc/sys/kernel/nmi_watchdog
opcontrol --separate=cpu
opcontrol --event="$event"
if [ "$vmlinux" == "" ];then
opcontrol --start --no-vmlinux --session-dir="$test_dir/oprofile_data/"
else
ln -sf "$vmlinux" "$test_dir/vmlinux"
opcontrol --start --vmlinux="$test_dir/vmlinux" --session-dir="$test_dir/oprofile_data/"
fi
fi
fi