mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 08:13:56 -04:00
do_fork() is no longer defined on x86, so probe _do_fork() instead.
Fixes: 3033f14ab7 ("clone: support passing tls argument via C ...")
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
17 lines
495 B
Bash
17 lines
495 B
Bash
#!/bin/sh
|
|
# description: Kretprobe dynamic event with arguments
|
|
|
|
[ -f kprobe_events ] || exit_unsupported # this is configurable
|
|
|
|
echo 0 > events/enable
|
|
echo > kprobe_events
|
|
echo 'r:testprobe2 _do_fork $retval' > kprobe_events
|
|
grep testprobe2 kprobe_events
|
|
test -d events/kprobes/testprobe2
|
|
echo 1 > events/kprobes/testprobe2/enable
|
|
( echo "forked")
|
|
echo 0 > events/kprobes/testprobe2/enable
|
|
echo '-:testprobe2' >> kprobe_events
|
|
clear_trace
|
|
test -d events/kprobes/testprobe2 && exit 1 || exit 0
|