Message ID | 20190724170018.96659-5-sdf@google.com |
---|---|
State | Changes Requested |
Delegated to: | BPF Maintainers |
Headers | show |
Series | bpf/flow_dissector: support input flags | expand |
On Wed, Jul 24, 2019 at 10:11 AM Stanislav Fomichev <sdf@google.com> wrote: > > Export bpf_flow_keys flags to tools/libbpf/selftests. > > Cc: Willem de Bruijn <willemb@google.com> > Cc: Petar Penkov <ppenkov@google.com> > Signed-off-by: Stanislav Fomichev <sdf@google.com> Acked-by: Song Liu <songliubraving@fb.com> > --- > tools/include/uapi/linux/bpf.h | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h > index 4e455018da65..a0e1c891b56f 100644 > --- a/tools/include/uapi/linux/bpf.h > +++ b/tools/include/uapi/linux/bpf.h > @@ -3504,6 +3504,10 @@ enum bpf_task_fd_type { > BPF_FD_TYPE_URETPROBE, /* filename + offset */ > }; > > +#define FLOW_DISSECTOR_F_PARSE_1ST_FRAG (1U << 0) > +#define FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL (1U << 1) > +#define FLOW_DISSECTOR_F_STOP_AT_ENCAP (1U << 2) > + > struct bpf_flow_keys { > __u16 nhoff; > __u16 thoff; > @@ -3525,6 +3529,7 @@ struct bpf_flow_keys { > __u32 ipv6_dst[4]; /* in6_addr; network order */ > }; > }; > + __u32 flags; > }; > > struct bpf_func_info { > -- > 2.22.0.657.g960e92d24f-goog >
diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h index 4e455018da65..a0e1c891b56f 100644 --- a/tools/include/uapi/linux/bpf.h +++ b/tools/include/uapi/linux/bpf.h @@ -3504,6 +3504,10 @@ enum bpf_task_fd_type { BPF_FD_TYPE_URETPROBE, /* filename + offset */ }; +#define FLOW_DISSECTOR_F_PARSE_1ST_FRAG (1U << 0) +#define FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL (1U << 1) +#define FLOW_DISSECTOR_F_STOP_AT_ENCAP (1U << 2) + struct bpf_flow_keys { __u16 nhoff; __u16 thoff; @@ -3525,6 +3529,7 @@ struct bpf_flow_keys { __u32 ipv6_dst[4]; /* in6_addr; network order */ }; }; + __u32 flags; }; struct bpf_func_info {
Export bpf_flow_keys flags to tools/libbpf/selftests. Cc: Willem de Bruijn <willemb@google.com> Cc: Petar Penkov <ppenkov@google.com> Signed-off-by: Stanislav Fomichev <sdf@google.com> --- tools/include/uapi/linux/bpf.h | 5 +++++ 1 file changed, 5 insertions(+)