mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-15 15:17:24 +07:00
cec3adf5f5
Use raw loopback address instead of localhost, because "localhost" can depend on nsswitch and in some case we can not resolve the localhost. Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Shuah Khan (Samsung OSG) <shuah@kernel.org>
53 lines
896 B
Bash
53 lines
896 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: event tracing - enable/disable with event level files
|
|
# flags: instance
|
|
|
|
do_reset() {
|
|
echo > set_event
|
|
clear_trace
|
|
}
|
|
|
|
fail() { #msg
|
|
echo $1
|
|
exit_fail
|
|
}
|
|
|
|
if [ ! -f set_event -o ! -d events/sched ]; then
|
|
echo "event tracing is not supported"
|
|
exit_unsupported
|
|
fi
|
|
|
|
echo 'sched:sched_switch' > set_event
|
|
|
|
yield
|
|
|
|
count=`cat trace | grep sched_switch | wc -l`
|
|
if [ $count -eq 0 ]; then
|
|
fail "sched_switch events are not recorded"
|
|
fi
|
|
|
|
do_reset
|
|
|
|
echo 1 > events/sched/sched_switch/enable
|
|
|
|
yield
|
|
|
|
count=`cat trace | grep sched_switch | wc -l`
|
|
if [ $count -eq 0 ]; then
|
|
fail "sched_switch events are not recorded"
|
|
fi
|
|
|
|
do_reset
|
|
|
|
echo 0 > events/sched/sched_switch/enable
|
|
|
|
yield
|
|
|
|
count=`cat trace | grep sched_switch | wc -l`
|
|
if [ $count -ne 0 ]; then
|
|
fail "sched_switch events should not be recorded"
|
|
fi
|
|
|
|
exit 0
|