Searched refs:tcp_congestion_ops (Results 1 – 25 of 33) sorted by relevance
12
/Linux-v5.15/net/ipv4/ |
D | bpf_tcp_ca.c | 17 offsetof(struct tcp_congestion_ops, init), 18 offsetof(struct tcp_congestion_ops, release), 19 offsetof(struct tcp_congestion_ops, set_state), 20 offsetof(struct tcp_congestion_ops, cwnd_event), 21 offsetof(struct tcp_congestion_ops, in_ack_event), 22 offsetof(struct tcp_congestion_ops, pkts_acked), 23 offsetof(struct tcp_congestion_ops, min_tso_segs), 24 offsetof(struct tcp_congestion_ops, sndbuf_expand), 25 offsetof(struct tcp_congestion_ops, cong_control), 29 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_lp.c | 327 static struct tcp_congestion_ops tcp_lp __read_mostly = {
|
D | tcp_westwood.c | 278 static struct tcp_congestion_ops tcp_westwood __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 = {
|
/Linux-v5.15/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.15/kernel/bpf/ |
D | bpf_struct_ops_types.h | 7 BPF_STRUCT_OPS_TYPE(tcp_congestion_ops)
|
/Linux-v5.15/tools/testing/selftests/bpf/progs/ |
D | bpf_tcp_nogpl.c | 16 struct tcp_congestion_ops bpf_nogpltcp = {
|
D | bpf_dctcp_release.c | 23 struct tcp_congestion_ops dctcp_rel = {
|
D | bpf_dctcp.c | 231 struct tcp_congestion_ops dctcp_nouse = { 239 struct tcp_congestion_ops dctcp = {
|
/Linux-v5.15/include/net/ |
D | inet_connection_sock.h | 28 struct tcp_congestion_ops; 94 const struct tcp_congestion_ops *icsk_ca_ops;
|
D | tcp.h | 1045 struct tcp_congestion_ops { struct 1097 int tcp_register_congestion_control(struct tcp_congestion_ops *type); argument 1098 void tcp_unregister_congestion_control(struct tcp_congestion_ops *type); 1116 extern struct tcp_congestion_ops tcp_reno; 1118 struct tcp_congestion_ops *tcp_ca_find(const char *name); 1119 struct tcp_congestion_ops *tcp_ca_find_key(u32 key); 1381 const struct tcp_congestion_ops *ca_ops = inet_csk(sk)->icsk_ca_ops; in tcp_slow_start_after_idle_check()
|
/Linux-v5.15/include/net/netns/ |
D | ipv4.h | 175 const struct tcp_congestion_ops __rcu *tcp_congestion_control;
|
/Linux-v5.15/tools/testing/selftests/bpf/ |
D | bpf_tcp_helpers.h | 154 struct tcp_congestion_ops { struct
|
12