Lines Matching refs:bpf_ops
26 struct sock_filter *bpf_ops;
95 return !prog->bpf_ops;
111 memcpy(nla_data(nla), prog->bpf_ops, nla_len(nla));
188 struct sock_filter *bpf_ops;
198 bpf_size = bpf_num_ops * sizeof(*bpf_ops);
202 bpf_ops = kmemdup(nla_data(tb[TCA_ACT_BPF_OPS]), bpf_size, GFP_KERNEL);
203 if (bpf_ops == NULL)
207 fprog_tmp.filter = bpf_ops;
211 kfree(bpf_ops);
215 cfg->bpf_ops = bpf_ops;
261 kfree(cfg->bpf_ops);
274 cfg->bpf_ops = prog->bpf_ops;
355 prog->bpf_ops = cfg.bpf_ops;