diff options
author | Jesper Dangaard Brouer <brouer@redhat.com> | 2018-02-13 14:15:36 +0100 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-02-13 17:50:10 -0800 |
commit | 297dd12cb104151797fd649433a2157b585f1718 (patch) | |
tree | 0e9dcdbd62cf551e0b9d897a5760eea406395e71 /include/linux/filter.h | |
parent | 444890c3ce7d74bdc20f2bf930b8476b98d3e972 (diff) | |
download | lwn-297dd12cb104151797fd649433a2157b585f1718.tar.gz lwn-297dd12cb104151797fd649433a2157b585f1718.zip |
net: avoid including xdp.h in filter.h
If is sufficient with a forward declaration of struct xdp_rxq_info in
linux/filter.h, which avoids including net/xdp.h. This was originally
suggested by John Fastabend during the review phase, but wasn't
included in the final patchset revision. Thus, this followup.
Suggested-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/linux/filter.h')
-rw-r--r-- | include/linux/filter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/filter.h b/include/linux/filter.h index 276932d75975..fdb691b520c0 100644 --- a/include/linux/filter.h +++ b/include/linux/filter.h @@ -20,7 +20,6 @@ #include <linux/set_memory.h> #include <linux/kallsyms.h> -#include <net/xdp.h> #include <net/sch_generic.h> #include <uapi/linux/filter.h> @@ -30,6 +29,7 @@ struct sk_buff; struct sock; struct seccomp_data; struct bpf_prog_aux; +struct xdp_rxq_info; /* ArgX, context and stack frame pointer register positions. Note, * Arg1, Arg2, Arg3, etc are used as argument mappings of function |