Home
last modified time | relevance | path

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

/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.c223 bool no_reuseport; in udp6_lookup_run_bpf() local
228 no_reuseport = bpf_sk_lookup_run_v6(net, IPPROTO_UDP, in udp6_lookup_run_bpf()
230 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp6_lookup_run_bpf()
/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.c477 bool no_reuseport; in udp4_lookup_run_bpf() local
482 no_reuseport = bpf_sk_lookup_run_v4(net, IPPROTO_UDP, in udp4_lookup_run_bpf()
484 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp4_lookup_run_bpf()
/net/bpf/
Dtest_run.c888 if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) { in bpf_prog_test_run_sk_lookup()
/net/core/
Dfilter.c10202 ctx->no_reuseport = flags & BPF_SK_LOOKUP_F_NO_REUSEPORT; in BPF_CALL_3()