Currently, the kprobe BPF program attachment method for bpf_load is pretty outdated. The implementation of bpf_load "directly" controls and manages(create, delete) the kprobe events of DEBUGFS. On the other hand, using using the libbpf automatically manages the kprobe event. (under bpf_link interface) This patchset refactors kprobe tracing programs with using libbpf API for loading bpf program instead of previous bpf_load implementation. Daniel T. Lee (3): samples: bpf: refactor kprobe tracing user progs with libbpf samples: bpf: refactor tail call user progs with libbpf samples: bpf: refactor kprobe, tail call kern progs map definition samples/bpf/Makefile | 16 ++++---- samples/bpf/sampleip_kern.c | 12 +++--- samples/bpf/sockex3_kern.c | 36 ++++++++--------- samples/bpf/sockex3_user.c | 66 ++++++++++++++++++++++---------- samples/bpf/trace_event_kern.c | 24 ++++++------ samples/bpf/tracex1_user.c | 41 ++++++++++++++++---- samples/bpf/tracex2_kern.c | 32 +++++++++------- samples/bpf/tracex2_user.c | 55 +++++++++++++++++++++----- samples/bpf/tracex3_kern.c | 24 ++++++------ samples/bpf/tracex3_user.c | 65 +++++++++++++++++++++++-------- samples/bpf/tracex4_kern.c | 12 +++--- samples/bpf/tracex4_user.c | 55 ++++++++++++++++++++------ samples/bpf/tracex5_kern.c | 14 +++---- samples/bpf/tracex5_user.c | 70 ++++++++++++++++++++++++++++++---- samples/bpf/tracex6_kern.c | 38 +++++++++--------- samples/bpf/tracex6_user.c | 53 ++++++++++++++++++++++--- samples/bpf/tracex7_user.c | 43 +++++++++++++++++---- 17 files changed, 471 insertions(+), 185 deletions(-) -- 2.25.1