Symbol: GET_TCB_FIELD
sys/dev/cxgbe/tom/t4_tom.c
656
if (GET_TCB_FIELD(tcb, SND_MAX_RAW) != GET_TCB_FIELD(tcb, SND_UNA_RAW)) {
sys/dev/cxgbe/tom/t4_tom.c
657
if (GET_TCB_FIELD(tcb, T_RXTSHIFT) != 0)
sys/dev/cxgbe/tom/t4_tom.c
659
if (GET_TCB_FIELD(tcb, T_DUPACKS) != 0)
sys/dev/cxgbe/tom/t4_tom.c
661
if (GET_TCB_FIELD(tcb, T_DUPACKS) >= td->dupack_threshold)
sys/dev/cxgbe/tom/t4_tom.c
665
if (GET_TCB_FIELD(tcb, SND_MAX_RAW) != 0) {
sys/dev/cxgbe/tom/t4_tom.c
670
snd_wnd = GET_TCB_FIELD(tcb, RCV_ADV);
sys/dev/cxgbe/tom/t4_tom.c
672
snd_wnd <<= GET_TCB_FIELD(tcb, RCV_SCALE);
sys/dev/cxgbe/tom/t4_tom.c
673
if (GET_TCB_FIELD(tcb, SND_CWND) < snd_wnd)
sys/dev/cxgbe/tom/t4_tom.c
713
remove = GET_TCB_FIELD(tcb, T_STATE) == TCPS_CLOSED;
sys/dev/cxgbe/tom/t4_tom.c
719
(uintmax_t)get_tcb_tflags(tcb), GET_TCB_FIELD(tcb, T_STATE),
sys/dev/cxgbe/tom/t4_tom.c
720
GET_TCB_FIELD(tcb, T_SRTT), GET_TCB_FIELD(tcb, SND_SCALE),
sys/dev/cxgbe/tom/t4_tom.c
721
GET_TCB_FIELD(tcb, RCV_SCALE), cpl->cookie);
sys/dev/cxgbe/tom/t4_tom.c
744
ti->tcpi_state = GET_TCB_FIELD(tcb, T_STATE);
sys/dev/cxgbe/tom/t4_tom.c
746
v = GET_TCB_FIELD(tcb, T_SRTT);
sys/dev/cxgbe/tom/t4_tom.c
749
v = GET_TCB_FIELD(tcb, T_RTTVAR);
sys/dev/cxgbe/tom/t4_tom.c
752
ti->tcpi_snd_ssthresh = GET_TCB_FIELD(tcb, SND_SSTHRESH);
sys/dev/cxgbe/tom/t4_tom.c
753
ti->tcpi_snd_cwnd = GET_TCB_FIELD(tcb, SND_CWND);
sys/dev/cxgbe/tom/t4_tom.c
754
ti->tcpi_rcv_nxt = GET_TCB_FIELD(tcb, RCV_NXT);
sys/dev/cxgbe/tom/t4_tom.c
755
ti->tcpi_rcv_adv = GET_TCB_FIELD(tcb, RCV_ADV);
sys/dev/cxgbe/tom/t4_tom.c
756
ti->tcpi_dupacks = GET_TCB_FIELD(tcb, T_DUPACKS);
sys/dev/cxgbe/tom/t4_tom.c
758
v = GET_TCB_FIELD(tcb, TX_MAX);
sys/dev/cxgbe/tom/t4_tom.c
759
ti->tcpi_snd_nxt = v - GET_TCB_FIELD(tcb, SND_NXT_RAW);
sys/dev/cxgbe/tom/t4_tom.c
760
ti->tcpi_snd_una = v - GET_TCB_FIELD(tcb, SND_UNA_RAW);
sys/dev/cxgbe/tom/t4_tom.c
761
ti->tcpi_snd_max = v - GET_TCB_FIELD(tcb, SND_MAX_RAW);
sys/dev/cxgbe/tom/t4_tom.c
764
ti->tcpi_rcv_wscale = GET_TCB_FIELD(tcb, SND_SCALE); /* Yes, SND. */
sys/dev/cxgbe/tom/t4_tom.c
765
ti->tcpi_rcv_space = GET_TCB_FIELD(tcb, RCV_WND);
sys/dev/cxgbe/tom/t4_tom.c
768
ti->tcpi_snd_wscale = GET_TCB_FIELD(tcb, RCV_SCALE); /* Yes, RCV. */
sys/dev/cxgbe/tom/t4_tom.c
769
ti->tcpi_snd_wnd = GET_TCB_FIELD(tcb, RCV_ADV);