Home
last modified time | relevance | path

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

/Linux-v6.1/include/linux/
Dfilter.h1372 bool no_reuseport; member
1413 _ctx->no_reuseport = _no_reuseport; \
1419 _no_reuseport = _ctx->no_reuseport; \
1426 _ctx->no_reuseport = _no_reuseport; \
1438 bool no_reuseport = false; in bpf_sk_lookup_run_v4() local
1457 no_reuseport = ctx.no_reuseport; in bpf_sk_lookup_run_v4()
1464 return no_reuseport; in bpf_sk_lookup_run_v4()
1477 bool no_reuseport = false; in bpf_sk_lookup_run_v6() local
1496 no_reuseport = ctx.no_reuseport; in bpf_sk_lookup_run_v6()
1503 return no_reuseport; in bpf_sk_lookup_run_v6()
/Linux-v6.1/net/ipv6/
Dinet6_hashtables.c168 bool no_reuseport; in inet6_lookup_run_bpf() local
173 no_reuseport = bpf_sk_lookup_run_v6(net, IPPROTO_TCP, saddr, sport, in inet6_lookup_run_bpf()
175 if (no_reuseport || IS_ERR_OR_NULL(sk)) in inet6_lookup_run_bpf()
Dudp.c218 bool no_reuseport; in udp6_lookup_run_bpf() local
223 no_reuseport = bpf_sk_lookup_run_v6(net, IPPROTO_UDP, saddr, sport, in udp6_lookup_run_bpf()
225 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp6_lookup_run_bpf()
/Linux-v6.1/net/ipv4/
Dinet_hashtables.c391 bool no_reuseport; in inet_lookup_run_bpf() local
396 no_reuseport = bpf_sk_lookup_run_v4(net, IPPROTO_TCP, saddr, sport, in inet_lookup_run_bpf()
398 if (no_reuseport || IS_ERR_OR_NULL(sk)) in inet_lookup_run_bpf()
Dudp.c468 bool no_reuseport; in udp4_lookup_run_bpf() local
473 no_reuseport = bpf_sk_lookup_run_v4(net, IPPROTO_UDP, saddr, sport, in udp4_lookup_run_bpf()
475 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp4_lookup_run_bpf()
/Linux-v6.1/net/bpf/
Dtest_run.c1586 if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) { in bpf_prog_test_run_sk_lookup()
/Linux-v6.1/net/core/
Dfilter.c11139 ctx->no_reuseport = flags & BPF_SK_LOOKUP_F_NO_REUSEPORT; in BPF_CALL_3()