Home
last modified time | relevance | path

Searched refs:no_reuseport (Results 1 – 7 of 7) sorted by relevance

/Linux-v5.15/include/linux/
Dfilter.h1375 bool no_reuseport; member
1416 _ctx->no_reuseport = _no_reuseport; \
1422 _no_reuseport = _ctx->no_reuseport; \
1429 _ctx->no_reuseport = _no_reuseport; \
1441 bool no_reuseport = false; in bpf_sk_lookup_run_v4() local
1459 no_reuseport = ctx.no_reuseport; in bpf_sk_lookup_run_v4()
1466 return no_reuseport; in bpf_sk_lookup_run_v4()
1479 bool no_reuseport = false; in bpf_sk_lookup_run_v6() local
1497 no_reuseport = ctx.no_reuseport; in bpf_sk_lookup_run_v6()
1504 return no_reuseport; in bpf_sk_lookup_run_v6()
/Linux-v5.15/net/ipv6/
Dinet6_hashtables.c171 bool no_reuseport; in inet6_lookup_run_bpf() local
176 no_reuseport = bpf_sk_lookup_run_v6(net, IPPROTO_TCP, in inet6_lookup_run_bpf()
178 if (no_reuseport || IS_ERR_OR_NULL(sk)) in inet6_lookup_run_bpf()
Dudp.c201 bool no_reuseport; in udp6_lookup_run_bpf() local
206 no_reuseport = bpf_sk_lookup_run_v6(net, IPPROTO_UDP, in udp6_lookup_run_bpf()
208 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp6_lookup_run_bpf()
/Linux-v5.15/net/ipv4/
Dinet_hashtables.c313 bool no_reuseport; in inet_lookup_run_bpf() local
318 no_reuseport = bpf_sk_lookup_run_v4(net, IPPROTO_TCP, in inet_lookup_run_bpf()
320 if (no_reuseport || IS_ERR_OR_NULL(sk)) in inet_lookup_run_bpf()
Dudp.c466 bool no_reuseport; in udp4_lookup_run_bpf() local
471 no_reuseport = bpf_sk_lookup_run_v4(net, IPPROTO_UDP, in udp4_lookup_run_bpf()
473 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp4_lookup_run_bpf()
/Linux-v5.15/net/bpf/
Dtest_run.c1005 if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) { in bpf_prog_test_run_sk_lookup()
/Linux-v5.15/net/core/
Dfilter.c10420 ctx->no_reuseport = flags & BPF_SK_LOOKUP_F_NO_REUSEPORT; in BPF_CALL_3()