On Sat, Mar 21, 2020 at 3:04 AM Daniel T. Lee <danieltimlee@xxxxxxxxx> wrote: > > To reduce the reliance of trace samples (trace*_user) on bpf_load, > move read_trace_pipe to trace_helpers. By moving this bpf_loader helper > elsewhere, trace functions can be easily migrated to libbbpf. > > Signed-off-by: Daniel T. Lee <danieltimlee@xxxxxxxxx> > --- Acked-by: Andrii Nakryiko <andriin@xxxxxx> > samples/bpf/Makefile | 4 ++-- > samples/bpf/bpf_load.c | 20 ------------------ > samples/bpf/bpf_load.h | 1 - > samples/bpf/tracex1_user.c | 1 + > samples/bpf/tracex5_user.c | 1 + > tools/testing/selftests/bpf/trace_helpers.c | 23 +++++++++++++++++++++ > tools/testing/selftests/bpf/trace_helpers.h | 1 + > 7 files changed, 28 insertions(+), 23 deletions(-) > [...]