Searched refs:CC_ALGO (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12-stable/sys/netinet/cc/ |
| D | cc_newreno.c | 250 nreno = (CC_ALGO(ccv->ccvc.tcp) == &newreno_cc_algo) ? ccv->cc_data : NULL; in newreno_cong_signal() 340 if (CC_ALGO(ccv->ccvc.tcp) != &newreno_cc_algo) in newreno_ctl_output()
|
| D | cc.h | 168 #define CC_ALGO(tp) ((tp)->cc_algo) macro
|
| /freebsd-12-stable/sys/netinet/ |
| D | tcp_timer.c | 794 if (CC_ALGO(tp)->conn_init != NULL) in tcp_timer_rexmt() 795 CC_ALGO(tp)->conn_init(tp->ccv); in tcp_timer_rexmt() 813 if (CC_ALGO(tp)->conn_init != NULL) in tcp_timer_rexmt() 814 CC_ALGO(tp)->conn_init(tp->ccv); in tcp_timer_rexmt()
|
| D | tcp_subr.c | 1623 CC_ALGO(tp) = CC_DEFAULT(); in tcp_newtcpcb() 1632 if (CC_ALGO(tp)->cb_init != NULL) in tcp_newtcpcb() 1633 if (CC_ALGO(tp)->cb_init(tp->ccv) > 0) { in tcp_newtcpcb() 1756 if (CC_ALGO(tp) == unload_algo) { in tcp_ccalgounload() 1757 tmpalgo = CC_ALGO(tp); in tcp_ccalgounload() 1769 CC_ALGO(tp) = &newreno_cc_algo; in tcp_ccalgounload() 1919 if (CC_ALGO(tp)->cb_destroy != NULL) in tcp_discardcb() 1920 CC_ALGO(tp)->cb_destroy(tp->ccv); in tcp_discardcb() 1927 CC_ALGO(tp) = NULL; in tcp_discardcb() 3283 bcopy(CC_ALGO(tp)->name, xt->xt_cc, in tcp_inptoxtp()
|
| D | tcp_input.c | 323 if (CC_ALGO(tp)->ack_received != NULL) { in cc_ack_received() 326 CC_ALGO(tp)->ack_received(tp->ccv, type); in cc_ack_received() 399 if (CC_ALGO(tp)->conn_init != NULL) in cc_conn_init() 400 CC_ALGO(tp)->conn_init(tp->ccv); in cc_conn_init() 453 if (CC_ALGO(tp)->cong_signal != NULL) { in cc_cong_signal() 456 CC_ALGO(tp)->cong_signal(tp->ccv, type); in cc_cong_signal() 467 if (CC_ALGO(tp)->post_recovery != NULL) { in cc_post_recovery() 469 CC_ALGO(tp)->post_recovery(tp->ccv); in cc_post_recovery() 495 if (CC_ALGO(tp)->ecnpkt_handler != NULL) { in cc_ecnpkt_handler() 514 CC_ALGO(tp)->ecnpkt_handler(tp->ccv); in cc_ecnpkt_handler()
|
| D | tcp_usrreq.c | 1869 if (CC_ALGO(tp)->ctl_output != NULL) in tcp_default_ctloutput() 1870 error = CC_ALGO(tp)->ctl_output(tp->ccv, sopt, pbuf); in tcp_default_ctloutput() 1989 if (CC_ALGO(tp)->cb_destroy != NULL) in tcp_default_ctloutput() 1990 CC_ALGO(tp)->cb_destroy(tp->ccv); in tcp_default_ctloutput() 1992 CC_ALGO(tp) = algo; in tcp_default_ctloutput() 2000 CC_ALGO(tp) = &newreno_cc_algo; in tcp_default_ctloutput() 2236 len = strlcpy(buf, CC_ALGO(tp)->name, TCP_CA_NAME_MAX); in tcp_default_ctloutput()
|
| D | tcp_output.c | 179 if (CC_ALGO(tp)->after_idle != NULL) in cc_after_idle() 180 CC_ALGO(tp)->after_idle(tp->ccv); in cc_after_idle()
|
| /freebsd-12-stable/sys/netinet/tcp_stacks/ |
| D | rack.c | 1331 if (CC_ALGO(tp)->ack_received != NULL) { in rack_ack_received() 1334 CC_ALGO(tp)->ack_received(tp->ccv, type); in rack_ack_received() 1366 if (CC_ALGO(tp)->post_recovery != NULL) { in rack_post_recovery() 1368 CC_ALGO(tp)->post_recovery(tp->ccv); in rack_post_recovery() 1460 if (CC_ALGO(tp)->cong_signal != NULL) { in rack_cong_signal() 1463 CC_ALGO(tp)->cong_signal(tp->ccv, type); in rack_cong_signal() 1481 if (CC_ALGO(tp)->after_idle != NULL) in rack_cc_after_idle() 1482 CC_ALGO(tp)->after_idle(tp->ccv); in rack_cc_after_idle()
|
| /freebsd-12-stable/sys/dev/cxgbe/tom/ |
| D | t4_tom.c | 1104 struct cc_algo *cc = CC_ALGO(tp); in init_conn_params()
|