Searched refs:filter_res (Results 1 - 3 of 3) sorted by relevance

/linux-master/net/sched/
H A Dact_bpf.c42 int action, filter_res; local
51 filter_res = bpf_prog_run(filter, skb);
55 filter_res = bpf_prog_run(filter, skb);
59 if (skb_sk_is_prefetched(skb) && filter_res != TC_ACT_OK)
63 * Similarly as in cls_bpf, if filter_res == -1 we use the
72 switch (filter_res) {
77 action = filter_res;
80 action = filter_res;
H A Dcls_bpf.c91 int filter_res; local
96 filter_res = prog->exts_integrated ? TC_ACT_UNSPEC : 0;
101 filter_res = bpf_prog_run(prog->filter, skb);
105 filter_res = bpf_prog_run(prog->filter, skb);
115 ret = cls_bpf_exec_opcode(filter_res);
121 if (filter_res == 0)
123 if (filter_res != -1) {
125 res->classid = filter_res;
/linux-master/tools/testing/selftests/bpf/progs/
H A Dxdpwall.c326 bool filter_res; local
353 filter_res = filter_transport_hdr(transport_hdr, data_end,
355 if (!filter_res)

Completed in 113 milliseconds