Re: [PATCH bpf-next v2 0/7] bpf/flow_dissector: support input flags

2019-07-25 Thread Petar Penkov
Thanks! For the series: Acked-by: Petar Penkov On Thu, Jul 25, 2019 at 8:33 AM Stanislav Fomichev wrote: > > C flow dissector supports input flags that tell it to customize parsing > by either stopping early or trying to parse as deep as possible. > BPF flow dissector always parses as deep as p

[PATCH bpf-next v2 0/7] bpf/flow_dissector: support input flags

2019-07-25 Thread Stanislav Fomichev
C flow dissector supports input flags that tell it to customize parsing by either stopping early or trying to parse as deep as possible. BPF flow dissector always parses as deep as possible which is sub-optimal. Pass input flags to the BPF flow dissector as well so it can make the same decisions.