Searched refs:tcp_congestion_ops (Results 1 – 25 of 31) sorted by relevance
12
/Linux-v5.10/net/ipv4/ |
D | bpf_tcp_ca.c | 13 offsetof(struct tcp_congestion_ops, init), 14 offsetof(struct tcp_congestion_ops, release), 15 offsetof(struct tcp_congestion_ops, set_state), 16 offsetof(struct tcp_congestion_ops, cwnd_event), 17 offsetof(struct tcp_congestion_ops, in_ack_event), 18 offsetof(struct tcp_congestion_ops, pkts_acked), 19 offsetof(struct tcp_congestion_ops, min_tso_segs), 20 offsetof(struct tcp_congestion_ops, sndbuf_expand), 21 offsetof(struct tcp_congestion_ops, cong_control), 25 offsetof(struct tcp_congestion_ops, get_info), [all …]
|
D | tcp_cong.c | 24 struct tcp_congestion_ops *tcp_ca_find(const char *name) in tcp_ca_find() 26 struct tcp_congestion_ops *e; in tcp_ca_find() 37 static struct tcp_congestion_ops *tcp_ca_find_autoload(struct net *net, in tcp_ca_find_autoload() 40 struct tcp_congestion_ops *ca = tcp_ca_find(name); in tcp_ca_find_autoload() 54 struct tcp_congestion_ops *tcp_ca_find_key(u32 key) in tcp_ca_find_key() 56 struct tcp_congestion_ops *e; in tcp_ca_find_key() 70 int tcp_register_congestion_control(struct tcp_congestion_ops *ca) in tcp_register_congestion_control() 104 void tcp_unregister_congestion_control(struct tcp_congestion_ops *ca) in tcp_unregister_congestion_control() 123 const struct tcp_congestion_ops *ca; in tcp_ca_get_key_by_name() 142 const struct tcp_congestion_ops *ca; in tcp_ca_get_name_by_key() [all …]
|
D | tcp_dctcp.c | 65 static struct tcp_congestion_ops dctcp_reno; 216 static struct tcp_congestion_ops dctcp __read_mostly = { 230 static struct tcp_congestion_ops dctcp_reno __read_mostly = {
|
D | tcp_scalable.c | 41 static struct tcp_congestion_ops tcp_scalable __read_mostly = {
|
D | tcp_highspeed.c | 160 static struct tcp_congestion_ops tcp_highspeed __read_mostly = {
|
D | tcp_hybla.c | 167 static struct tcp_congestion_ops tcp_hybla __read_mostly = {
|
D | tcp_veno.c | 208 static struct tcp_congestion_ops tcp_veno __read_mostly = {
|
D | tcp_yeah.c | 208 static struct tcp_congestion_ops tcp_yeah __read_mostly = {
|
D | tcp_bic.c | 202 static struct tcp_congestion_ops bictcp __read_mostly = {
|
D | tcp_vegas.c | 308 static struct tcp_congestion_ops tcp_vegas __read_mostly = {
|
D | tcp_westwood.c | 278 static struct tcp_congestion_ops tcp_westwood __read_mostly = {
|
D | tcp_lp.c | 320 static struct tcp_congestion_ops tcp_lp __read_mostly = {
|
D | tcp_illinois.c | 328 static struct tcp_congestion_ops tcp_illinois __read_mostly = {
|
D | tcp_htcp.c | 289 static struct tcp_congestion_ops htcp __read_mostly = {
|
D | tcp_nv.c | 471 static struct tcp_congestion_ops tcpnv __read_mostly = {
|
D | tcp_cdg.c | 393 static struct tcp_congestion_ops tcp_cdg __read_mostly = {
|
D | tcp_cubic.c | 482 static struct tcp_congestion_ops cubictcp __read_mostly = {
|
/Linux-v5.10/tools/bpf/bpftool/Documentation/ |
D | bpftool-struct_ops.rst | 71 100: dctcp tcp_congestion_ops 72 105: cubic tcp_congestion_ops 78 Unregistered tcp_congestion_ops cubic id 105 84 Registered tcp_congestion_ops cubic id 110
|
/Linux-v5.10/kernel/bpf/ |
D | bpf_struct_ops_types.h | 7 BPF_STRUCT_OPS_TYPE(tcp_congestion_ops)
|
/Linux-v5.10/tools/testing/selftests/bpf/progs/ |
D | bpf_dctcp.c | 216 struct tcp_congestion_ops dctcp_nouse = { 224 struct tcp_congestion_ops dctcp = {
|
D | bpf_cubic.c | 536 struct tcp_congestion_ops cubic = {
|
/Linux-v5.10/include/net/ |
D | inet_connection_sock.h | 28 struct tcp_congestion_ops; 92 const struct tcp_congestion_ops *icsk_ca_ops;
|
D | tcp.h | 1055 struct tcp_congestion_ops { struct 1095 int tcp_register_congestion_control(struct tcp_congestion_ops *type); argument 1096 void tcp_unregister_congestion_control(struct tcp_congestion_ops *type); 1114 extern struct tcp_congestion_ops tcp_reno; 1116 struct tcp_congestion_ops *tcp_ca_find(const char *name); 1117 struct tcp_congestion_ops *tcp_ca_find_key(u32 key); 1377 const struct tcp_congestion_ops *ca_ops = inet_csk(sk)->icsk_ca_ops; in tcp_slow_start_after_idle_check()
|
/Linux-v5.10/include/net/netns/ |
D | ipv4.h | 180 const struct tcp_congestion_ops __rcu *tcp_congestion_control;
|
/Linux-v5.10/tools/testing/selftests/bpf/ |
D | bpf_tcp_helpers.h | 148 struct tcp_congestion_ops { struct
|
12