aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/samples/bpf/xdp_tx_iptunnel_user.c
diff options
context:
space:
mode:
authorDaniel T. Lee <danieltimlee@gmail.com>2019-11-07 09:51:52 +0900
committerAlexei Starovoitov <ast@kernel.org>2019-11-08 19:19:43 -0800
commitafbe3c27d9ae151be33ccd6b05699d3c49dabad2 (patch)
tree6199d27c3dfba6d334ec4d66f84009b0075dce0f /samples/bpf/xdp_tx_iptunnel_user.c
parentbpf: Add cb access in kfree_skb test (diff)
downloadwireguard-linux-afbe3c27d9ae151be33ccd6b05699d3c49dabad2.tar.xz
wireguard-linux-afbe3c27d9ae151be33ccd6b05699d3c49dabad2.zip
samples: bpf: Update outdated error message
Currently, under samples, several methods are being used to load bpf program. Since using libbpf is preferred solution, lots of previously used 'load_bpf_file' from bpf_load are replaced with 'bpf_prog_load_xattr' from libbpf. But some of the error messages still show up as 'load_bpf_file' instead of 'bpf_prog_load_xattr'. This commit fixes outdated errror messages under samples and fixes some code style issues. Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Andrii Nakryiko <andriin@fb.com> Link: https://lore.kernel.org/bpf/20191107005153.31541-2-danieltimlee@gmail.com
Diffstat (limited to '')
-rw-r--r--samples/bpf/xdp_tx_iptunnel_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/bpf/xdp_tx_iptunnel_user.c b/samples/bpf/xdp_tx_iptunnel_user.c
index dfb68582e243..2fe4c7f5ffe5 100644
--- a/samples/bpf/xdp_tx_iptunnel_user.c
+++ b/samples/bpf/xdp_tx_iptunnel_user.c
@@ -268,7 +268,7 @@ int main(int argc, char **argv)
return 1;
if (!prog_fd) {
- printf("load_bpf_file: %s\n", strerror(errno));
+ printf("bpf_prog_load_xattr: %s\n", strerror(errno));
return 1;
}