aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/samples/bpf/xdp_rxq_info_user.c
diff options
context:
space:
mode:
authorDaniel T. Lee <danieltimlee@gmail.com>2019-06-16 00:14:47 +0900
committerDaniel Borkmann <daniel@iogearbox.net>2019-06-18 00:28:36 +0200
commit4d18f6de6ac1d85dc0bc85481fb7cabde09e59ae (patch)
tree5d10b51c6622828cb26e5daad4d5148b8017fbc0 /samples/bpf/xdp_rxq_info_user.c
parentsamples: bpf: remove unnecessary include options in Makefile (diff)
downloadwireguard-linux-4d18f6de6ac1d85dc0bc85481fb7cabde09e59ae.tar.xz
wireguard-linux-4d18f6de6ac1d85dc0bc85481fb7cabde09e59ae.zip
samples: bpf: refactor header include path
Currently, header inclusion in each file is inconsistent. For example, "libbpf.h" header is included as multiple ways. #include "bpf/libbpf.h" #include "libbpf.h" Due to commit b552d33c80a9 ("samples/bpf: fix include path in Makefile"), $(srctree)/tools/lib/bpf/ path had been included during build, path "bpf/" in header isn't necessary anymore. This commit removes path "bpf/" in header inclusion. Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'samples/bpf/xdp_rxq_info_user.c')
-rw-r--r--samples/bpf/xdp_rxq_info_user.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/bpf/xdp_rxq_info_user.c b/samples/bpf/xdp_rxq_info_user.c
index 1210f3b170f0..c7e4e45d824a 100644
--- a/samples/bpf/xdp_rxq_info_user.c
+++ b/samples/bpf/xdp_rxq_info_user.c
@@ -22,8 +22,8 @@ static const char *__doc__ = " XDP RX-queue info extract example\n\n"
#include <arpa/inet.h>
#include <linux/if_link.h>
-#include "bpf/bpf.h"
-#include "bpf/libbpf.h"
+#include "bpf.h"
+#include "libbpf.h"
#include "bpf_util.h"
static int ifindex = -1;