Home
last modified time | relevance | path

Searched refs:tcp_congestion_ops (Results 1 – 25 of 37) sorted by relevance

12

/linux-6.12.1/net/ipv4/
Dtcp_cong.c25 struct tcp_congestion_ops *tcp_ca_find(const char *name) in tcp_ca_find()
27 struct tcp_congestion_ops *e; in tcp_ca_find()
49 static struct tcp_congestion_ops *tcp_ca_find_autoload(const char *name) in tcp_ca_find_autoload()
51 struct tcp_congestion_ops *ca = tcp_ca_find(name); in tcp_ca_find_autoload()
65 struct tcp_congestion_ops *tcp_ca_find_key(u32 key) in tcp_ca_find_key()
67 struct tcp_congestion_ops *e; in tcp_ca_find_key()
77 int tcp_validate_congestion_control(struct tcp_congestion_ops *ca) in tcp_validate_congestion_control()
92 int tcp_register_congestion_control(struct tcp_congestion_ops *ca) in tcp_register_congestion_control()
123 void tcp_unregister_congestion_control(struct tcp_congestion_ops *ca) in tcp_unregister_congestion_control()
145 int tcp_update_congestion_control(struct tcp_congestion_ops *ca, struct tcp_congestion_ops *old_ca) in tcp_update_congestion_control()
[all …]
Dbpf_tcp_ca.c170 offsetof(struct tcp_congestion_ops, release)) in bpf_tcp_ca_get_func_proto()
181 offsetof(struct tcp_congestion_ops, release)) in bpf_tcp_ca_get_func_proto()
214 const struct tcp_congestion_ops *utcp_ca; in bpf_tcp_ca_init_member()
215 struct tcp_congestion_ops *tcp_ca; in bpf_tcp_ca_init_member()
218 utcp_ca = (const struct tcp_congestion_ops *)udata; in bpf_tcp_ca_init_member()
219 tcp_ca = (struct tcp_congestion_ops *)kdata; in bpf_tcp_ca_init_member()
223 case offsetof(struct tcp_congestion_ops, flags): in bpf_tcp_ca_init_member()
228 case offsetof(struct tcp_congestion_ops, name): in bpf_tcp_ca_init_member()
311 static struct tcp_congestion_ops __bpf_ops_tcp_congestion_ops = {
345 ret = ret ?: register_bpf_struct_ops(&bpf_tcp_congestion_ops, tcp_congestion_ops); in bpf_tcp_ca_kfunc_init()
Dtcp_dctcp.c79 static struct tcp_congestion_ops dctcp_reno;
251 static struct tcp_congestion_ops dctcp __read_mostly = {
265 static struct tcp_congestion_ops dctcp_reno __read_mostly = {
Dtcp_scalable.c41 static struct tcp_congestion_ops tcp_scalable __read_mostly = {
Dtcp_highspeed.c160 static struct tcp_congestion_ops tcp_highspeed __read_mostly = {
Dtcp_hybla.c167 static struct tcp_congestion_ops tcp_hybla __read_mostly = {
Dtcp_veno.c208 static struct tcp_congestion_ops tcp_veno __read_mostly = {
Dtcp_yeah.c208 static struct tcp_congestion_ops tcp_yeah __read_mostly = {
Dtcp_vegas.c309 static struct tcp_congestion_ops tcp_vegas __read_mostly = {
Dtcp_bic.c202 static struct tcp_congestion_ops bictcp __read_mostly = {
Dtcp_lp.c327 static struct tcp_congestion_ops tcp_lp __read_mostly = {
Dtcp_westwood.c279 static struct tcp_congestion_ops tcp_westwood __read_mostly = {
/linux-6.12.1/tools/testing/selftests/bpf/progs/
Dtcp_ca_update.c43 struct tcp_congestion_ops ca_update_1 = {
52 struct tcp_congestion_ops ca_update_2 = {
61 struct tcp_congestion_ops ca_wrong = {
69 struct tcp_congestion_ops ca_no_link = {
Dbpf_tcp_nogpl.c14 struct tcp_congestion_ops bpf_nogpltcp = {
Dtcp_ca_unsupp_cong_op.c18 struct tcp_congestion_ops unsupp_cong_op = {
Dbpf_dctcp_release.c19 struct tcp_congestion_ops dctcp_rel = {
Dtcp_ca_incompl_cong_ops.c22 struct tcp_congestion_ops incompl_cong_ops = {
Dtcp_ca_write_sk_pacing.c59 struct tcp_congestion_ops write_sk_pacing = {
Dbpf_dctcp.c246 struct tcp_congestion_ops dctcp_nouse = {
254 struct tcp_congestion_ops dctcp = {
Dtcp_ca_kfunc.c106 struct tcp_congestion_ops tcp_ca_kfunc = {
Dbpf_cc_cubic.c178 struct tcp_congestion_ops cc_cubic = {
/linux-6.12.1/tools/bpf/bpftool/Documentation/
Dbpftool-struct_ops.rst78 100: dctcp tcp_congestion_ops
79 105: cubic tcp_congestion_ops
85 Unregistered tcp_congestion_ops cubic id 105
91 Registered tcp_congestion_ops cubic id 110
/linux-6.12.1/include/net/
Dinet_connection_sock.h29 struct tcp_congestion_ops;
95 const struct tcp_congestion_ops *icsk_ca_ops;
Dtcp.h1150 struct tcp_congestion_ops { struct
1202 int tcp_register_congestion_control(struct tcp_congestion_ops *type); argument
1203 void tcp_unregister_congestion_control(struct tcp_congestion_ops *type);
1204 int tcp_update_congestion_control(struct tcp_congestion_ops *type,
1205 struct tcp_congestion_ops *old_type);
1206 int tcp_validate_congestion_control(struct tcp_congestion_ops *ca);
1224 extern struct tcp_congestion_ops tcp_reno;
1226 struct tcp_congestion_ops *tcp_ca_find(const char *name);
1227 struct tcp_congestion_ops *tcp_ca_find_key(u32 key);
1505 const struct tcp_congestion_ops *ca_ops = inet_csk(sk)->icsk_ca_ops; in tcp_slow_start_after_idle_check()
/linux-6.12.1/include/net/netns/
Dipv4.h211 const struct tcp_congestion_ops __rcu *tcp_congestion_control;

12