HomeSort by: relevance | last modified time | path
    Searched refs:t_segsz (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/netinet/
tcp_congctl.c 435 win = ulmin(tp->snd_wnd, tp->snd_cwnd) * betaa / betab / tp->t_segsz;
439 tp->snd_ssthresh = win * tp->t_segsz;
489 tp->snd_cwnd = tp->t_segsz;
494 tp->snd_cwnd = tp->t_segsz;
496 tp->snd_cwnd = tp->snd_ssthresh + tp->t_segsz * tp->t_dupacks;
549 win = ulmin(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_segsz;
553 tp->snd_cwnd = tp->t_segsz;
554 tp->snd_ssthresh = win * tp->t_segsz;
596 u_int incr = tp->t_segsz;
723 if (((th->th_ack - tp->snd_una) / tp->t_segsz) > 2
    [all...]
tcp_var.h 231 u_short t_segsz; /* current segment size in use */ member in struct:tcpcb
412 (SEQ_GT(tp->snd_fack, tp->snd_una + tcprexmtthresh * tp->t_segsz)))
tcp_output.c 378 if (*txsegsizep != tp->t_segsz) {
388 if (*txsegsizep < tp->t_segsz) {
389 tp->snd_cwnd = uimax((tp->snd_cwnd / tp->t_segsz)
391 tp->snd_ssthresh = uimax((tp->snd_ssthresh / tp->t_segsz)
394 tp->t_segsz = *txsegsizep;
tcp_subr.c 908 tp->t_segsz = tcp_mssdflt;
1116 i = (i + tp->t_segsz / 2) / tp->t_segsz;
1119 i *= (u_long)(tp->t_segsz + sizeof (struct tcpiphdr));
1521 tp->snd_cwnd = tp->t_segsz;
1803 tp->t_segsz = mss;
tcp_usrreq.c 233 ti->tcpi_snd_cwnd = tp->snd_cwnd / tp->t_segsz;
234 ti->tcpi_snd_wnd = tp->snd_wnd / tp->t_segsz;
243 ti->tcpi_snd_mss = tp->t_segsz;
244 ti->tcpi_rcv_mss = tp->t_segsz;
tcp_input.c 2499 tp->snd_cwnd += tp->t_segsz;
  /src/sys/dev/ic/
cs4231var.h 56 vsize_t t_segsz; /* size of the segment */ member in struct:cs_transfer
cs4231.c 287 t->t_segsz = n; /* size of DMA segment */
302 start, end, (u_long)t->t_segsz, (u_long)t->t_blksz,
321 togo = t->t_segsz - t->t_cnt;
  /src/usr.bin/netstat/
inet.c 1095 tcpcb.t_peermss, tcpcb.t_ourmss, tcpcb.t_segsz, tcpcb.t_segqlen);
inet6.c 1544 tcpcb.t_peermss, tcpcb.t_ourmss, tcpcb.t_segsz, tcpcb.t_segqlen);

Completed in 22 milliseconds