mirror of
https://github.com/torvalds/linux.git
synced 2026-04-25 10:02:31 -04:00
Use relative path to trigger file instead of absolute debugfs path, because if the user uses tracefs instead of debugfs, it can be mounted at /sys/kernel/tracing. Anyway, since the ftracetest is designed to be run at the tracing directory, user doesn't need to use absolute path. Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
29 lines
678 B
Bash
29 lines
678 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: event trigger - test inter-event histogram trigger onchange action
|
|
|
|
fail() { #msg
|
|
echo $1
|
|
exit_fail
|
|
}
|
|
|
|
if [ ! -f set_event ]; then
|
|
echo "event tracing is not supported"
|
|
exit_unsupported
|
|
fi
|
|
|
|
grep -q "onchange(var)" README || exit_unsupported # version issue
|
|
|
|
echo "Test onchange action"
|
|
|
|
echo 'hist:keys=comm:newprio=prio:onchange($newprio).save(comm,prio) if comm=="ping"' >> events/sched/sched_waking/trigger
|
|
|
|
ping $LOCALHOST -c 3
|
|
nice -n 1 ping $LOCALHOST -c 3
|
|
|
|
if ! grep -q "changed:" events/sched/sched_waking/hist; then
|
|
fail "Failed to create onchange action inter-event histogram"
|
|
fi
|
|
|
|
exit 0
|