Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/ftrace: check for do_sys_openat2 in user-memory test

More recent libc implementations are now using openat/openat2 system
calls so also add do_sys_openat2 to the tracing so that the test
passes on these systems because do_sys_open may not be called.

Thanks to Masami Hiramatsu for the help on getting this fix to work
correctly.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Colin Ian King and committed by
Shuah Khan
e3e40312 dc6bf4da

+4
+4
tools/testing/selftests/ftrace/test.d/kprobe/kprobe_args_user.tc
··· 9 9 :;: "user-memory access syntax and ustring working on user memory";: 10 10 echo 'p:myevent do_sys_open path=+0($arg2):ustring path2=+u0($arg2):string' \ 11 11 > kprobe_events 12 + echo 'p:myevent2 do_sys_openat2 path=+0($arg2):ustring path2=+u0($arg2):string' \ 13 + >> kprobe_events 12 14 13 15 grep myevent kprobe_events | \ 14 16 grep -q 'path=+0($arg2):ustring path2=+u0($arg2):string' 15 17 echo 1 > events/kprobes/myevent/enable 18 + echo 1 > events/kprobes/myevent2/enable 16 19 echo > /dev/null 17 20 echo 0 > events/kprobes/myevent/enable 21 + echo 0 > events/kprobes/myevent2/enable 18 22 19 23 grep myevent trace | grep -q 'path="/dev/null" path2="/dev/null"' 20 24