Re: [PATCHv4 net-next 05/15] bpf: expose internal verfier structures

2016-09-15 Thread Alexei Starovoitov
On Thu, Sep 15, 2016 at 08:12:25PM +0100, Jakub Kicinski wrote: > Move verifier's internal structures to a header file and > prefix their names with bpf_ to avoid potential namespace > conflicts. Those structures will soon be used by external > analyzers. > > Signed-off-by: Jakub Kicinski > ---

[PATCHv4 net-next 05/15] bpf: expose internal verfier structures

2016-09-15 Thread Jakub Kicinski
Move verifier's internal structures to a header file and prefix their names with bpf_ to avoid potential namespace conflicts. Those structures will soon be used by external analyzers. Signed-off-by: Jakub Kicinski --- v4: - separate from adding the analyzer; - squash with the prefixing patch.