Searched refs:no_reuseport (Results 1 – 7 of 7) sorted by relevance
1326 bool no_reuseport; member1367 _ctx->no_reuseport = _no_reuseport; \1373 _no_reuseport = _ctx->no_reuseport; \1380 _ctx->no_reuseport = _no_reuseport; \1392 bool no_reuseport = false; in bpf_sk_lookup_run_v4() local1410 no_reuseport = ctx.no_reuseport; in bpf_sk_lookup_run_v4()1417 return no_reuseport; in bpf_sk_lookup_run_v4()1430 bool no_reuseport = false; in bpf_sk_lookup_run_v6() local1448 no_reuseport = ctx.no_reuseport; in bpf_sk_lookup_run_v6()1455 return no_reuseport; in bpf_sk_lookup_run_v6()
171 bool no_reuseport; in inet6_lookup_run_bpf() local176 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()
201 bool no_reuseport; in udp6_lookup_run_bpf() local206 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()
313 bool no_reuseport; in inet_lookup_run_bpf() local318 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()
467 bool no_reuseport; in udp4_lookup_run_bpf() local472 no_reuseport = bpf_sk_lookup_run_v4(net, IPPROTO_UDP, in udp4_lookup_run_bpf()474 if (no_reuseport || IS_ERR_OR_NULL(sk)) in udp4_lookup_run_bpf()
891 if (ctx.selected_sk->sk_reuseport && !ctx.no_reuseport) { in bpf_prog_test_run_sk_lookup()
10172 ctx->no_reuseport = flags & BPF_SK_LOOKUP_F_NO_REUSEPORT; in BPF_CALL_3()