mirror of
https://github.com/torvalds/linux.git
synced 2026-04-24 09:35:52 -04:00
As same as other results, introduce exit_pass and exit_fail functions so that we can easily understand what will happen. Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
19 lines
545 B
Bash
19 lines
545 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# description: Kprobe dynamic event with arguments
|
|
|
|
[ -f kprobe_events ] || exit_unsupported # this is configurable
|
|
|
|
echo 0 > events/enable
|
|
echo > kprobe_events
|
|
echo 'p:testprobe _do_fork $stack $stack0 +0($stack)' > kprobe_events
|
|
grep testprobe kprobe_events
|
|
test -d events/kprobes/testprobe
|
|
echo 1 > events/kprobes/testprobe/enable
|
|
( echo "forked")
|
|
echo 0 > events/kprobes/testprobe/enable
|
|
echo "-:testprobe" >> kprobe_events
|
|
clear_trace
|
|
test -d events/kprobes/testprobe && exit_fail || exit_pass
|
|
|