samples, bpf: Refactor pointer error check with libbpf
authorDaniel T. Lee <danieltimlee@gmail.com>
Sat, 16 May 2020 04:06:04 +0000 (13:06 +0900)
committerDaniel Borkmann <daniel@iogearbox.net>
Tue, 19 May 2020 15:12:49 +0000 (17:12 +0200)
commit0efdcefb00d768442efef21560ea4c44d481fa5c
tree8be1ed7d70e6a61c43d53f984061e5d2acd1e4a3
parent96586dd9268d26b278a1dd9110080001a6acbb0f
samples, bpf: Refactor pointer error check with libbpf

Current method of checking pointer error is not user friendly.
Especially the __must_check define makes this less intuitive.

Since, libbpf has an API libbpf_get_error() which checks pointer error,
this commit refactors existing pointer error check logic with libbpf.

Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Yonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/bpf/20200516040608.1377876-2-danieltimlee@gmail.com
samples/bpf/sampleip_user.c
samples/bpf/trace_event_user.c
samples/bpf/xdp_redirect_cpu_user.c