Re: [PATCH net-next 1/4] bpf: split verifier and program ops

2017-10-17 Thread Alexei Starovoitov
On Mon, Oct 16, 2017 at 04:40:53PM -0700, Jakub Kicinski wrote: > struct bpf_verifier_ops contains both verifier ops and operations > used later during program's lifetime (test_run). Split the runtime > ops into a different structure. > > BPF_PROG_TYPE() will now append ## _prog_ops or ## _verifi

Re: [PATCH net-next 1/4] bpf: split verifier and program ops

2017-10-17 Thread Daniel Borkmann
On 10/17/2017 01:40 AM, Jakub Kicinski wrote: struct bpf_verifier_ops contains both verifier ops and operations used later during program's lifetime (test_run). Split the runtime ops into a different structure. BPF_PROG_TYPE() will now append ## _prog_ops or ## _verifier_ops to the names. Sign