Searched refs:amm (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/netinet/tcp_stacks/
H A Dtcp_bbr.h507 #define BBR_STAT_ADD(name, amm) counter_u64_add(bbr_stat_arry[(offsetof(struct bbr_stats, name)/sizeof(uint64_t))], (amm))
511 #define BBR_OPTS_ADD(name, amm) counter_u64_add(bbr_opts_arry[(offsetof(struct bbr_opts_stats, name)/sizeof(uint64_t))], (amm))
H A Dtcp_rack.h274 #define RACK_OPTS_ADD(name, amm) counter_u64_add(rack_opts_arry[(offsetof(struct rack_opts_stats, name)/sizeof(uint64_t))], (amm))
H A Drack.c6161 uint32_t amm; local
6204 amm = avail - out;
6205 if (amm > ctf_fixed_maxseg(tp)) {
6206 amm = ctf_fixed_maxseg(tp);
6207 if ((amm + out) > tp->snd_wnd) {
6211 } else if (amm < ctf_fixed_maxseg(tp)) {
6218 if (out + amm <= tp->snd_wnd) {
6219 rack->r_ctl.rc_prr_sndcnt = amm;
6226 if (out + amm <= tp->snd_wnd)
6227 rack->r_ctl.rc_tlp_new_data = amm;
[all...]
H A Dbbr.c4566 uint32_t amm; local
4605 amm = avail - out;
4606 if (amm > maxseg) {
4607 amm = maxseg;
4608 } else if ((amm < maxseg) && ((tp->t_flags & TF_NODELAY) == 0)) {
4613 if ((out + amm) <= tp->snd_wnd) {

Completed in 203 milliseconds