Home
last modified time | relevance | path

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

/Linux-v5.10/include/linux/
Dfilter.h1310 bool no_reuseport; member
1351 _ctx->no_reuseport = _no_reuseport; \
1357 _no_reuseport = _ctx->no_reuseport; \
1364 _ctx->no_reuseport = _no_reuseport; \
1376 bool no_reuseport = false; in bpf_sk_lookup_run_v4() local
1394 no_reuseport = ctx.no_reuseport; in bpf_sk_lookup_run_v4()
1401 return no_reuseport; in bpf_sk_lookup_run_v4()
1414 bool no_reuseport = false; in bpf_sk_lookup_run_v6() local
1432 no_reuseport = ctx.no_reuseport; in bpf_sk_lookup_run_v6()
1439 return no_reuseport; in bpf_sk_lookup_run_v6()
/Linux-v5.10/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.c200 bool no_reuseport; in udp6_lookup_run_bpf() local
205 no_reuseport = bpf_sk_lookup_run_v6(net, IPPROTO_UDP, in udp6_lookup_run_bpf()
207 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp6_lookup_run_bpf()
/Linux-v5.10/net/ipv4/
Dinet_hashtables.c311 bool no_reuseport; in inet_lookup_run_bpf() local
316 no_reuseport = bpf_sk_lookup_run_v4(net, IPPROTO_TCP, in inet_lookup_run_bpf()
318 if (no_reuseport || IS_ERR_OR_NULL(sk)) in inet_lookup_run_bpf()
Dudp.c465 bool no_reuseport; in udp4_lookup_run_bpf() local
470 no_reuseport = bpf_sk_lookup_run_v4(net, IPPROTO_UDP, in udp4_lookup_run_bpf()
472 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp4_lookup_run_bpf()
/Linux-v5.10/net/core/
Dfilter.c10125 ctx->no_reuseport = flags & BPF_SK_LOOKUP_F_NO_REUSEPORT; in BPF_CALL_3()