Lines Matching refs:bpf_ops
27 struct sock_filter *bpf_ops;
96 return !prog->bpf_ops;
112 memcpy(nla_data(nla), prog->bpf_ops, nla_len(nla));
189 struct sock_filter *bpf_ops;
199 bpf_size = bpf_num_ops * sizeof(*bpf_ops);
203 bpf_ops = kmemdup(nla_data(tb[TCA_ACT_BPF_OPS]), bpf_size, GFP_KERNEL);
204 if (bpf_ops == NULL)
208 fprog_tmp.filter = bpf_ops;
212 kfree(bpf_ops);
216 cfg->bpf_ops = bpf_ops;
262 kfree(cfg->bpf_ops);
275 cfg->bpf_ops = prog->bpf_ops;
356 prog->bpf_ops = cfg.bpf_ops;