Skip to content
Commit 225a47ee authored by Daniel T. Lee's avatar Daniel T. Lee Committed by Paul Gortmaker
Browse files

samples: bpf: fix syscall_tp due to unused syscall

commit fe330089 upstream.

Currently, open() is called from the user program and it calls the syscall
'sys_openat', not the 'sys_open'. This leads to an error of the program
of user side, due to the fact that the counter maps are zero since no
function such 'sys_open' is called.

This commit adds the kernel bpf program which are attached to the
tracepoint 'sys_enter_openat' and 'sys_enter_openat'.

Fixes: 1da236b6

 ("bpf: add a test case for syscalls/sys_{enter|exit}_* tracepoints")
Signed-off-by: default avatarDaniel T. Lee <danieltimlee@gmail.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent af2251e9
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment