diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2018-05-15 08:35:02 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-05-15 08:52:10 +0300 |
commit | 2bf3e2ef425bc2a164f10b554b7db6a8b4090ef4 (patch) | |
tree | 2a78c9c06062bbc0a7ea392357e49085431ab761 /samples/bpf/test_map_in_map_user.c | |
parent | fb40c9ddd66b9c9bb811bbee125b3cb3ba1faee7 (diff) | |
download | linux-2bf3e2ef425bc2a164f10b554b7db6a8b4090ef4.tar.xz |
samples: bpf: include bpf/bpf.h instead of local libbpf.h
There are two files in the tree called libbpf.h which is becoming
problematic. Most samples don't actually need the local libbpf.h
they simply include it to get to bpf/bpf.h. Include bpf/bpf.h
directly instead.
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'samples/bpf/test_map_in_map_user.c')
-rw-r--r-- | samples/bpf/test_map_in_map_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/bpf/test_map_in_map_user.c b/samples/bpf/test_map_in_map_user.c index 1aca18539d8d..e308858f7bcf 100644 --- a/samples/bpf/test_map_in_map_user.c +++ b/samples/bpf/test_map_in_map_user.c @@ -13,7 +13,7 @@ #include <errno.h> #include <stdlib.h> #include <stdio.h> -#include "libbpf.h" +#include <bpf/bpf.h> #include "bpf_load.h" #define PORT_A (map_fd[0]) |