Searched refs:ts_recent (Results 1 – 14 of 14) sorted by relevance
/freebsd/sys/netinet/ |
H A D | tcp_timewait.c | 196 * and it's less than ts_recent, drop it. in tcp_twcheck() 198 if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent && in tcp_twcheck() 199 TSTMP_LT(to.to_tsval, tp->ts_recent)) { in tcp_twcheck() 205 * ts_recent is never updated because we never accept new segments. in tcp_twcheck() 275 if (((to->to_flags & TOF_TS) == 0) && (tp->ts_recent != 0) && in tcp_twcheck()
|
H A D | tcp_input.c | 1668 tp->ts_recent = to.to_tsval; in tcp_do_segment() 1766 TSTMP_GEQ(to.to_tsval, tp->ts_recent)) ) { in tcp_do_segment() 1776 tp->ts_recent = to.to_tsval; in tcp_do_segment() 2235 if ((to.to_flags & TOF_TS) != 0 && tp->ts_recent && in tcp_do_segment() 2236 TSTMP_LT(to.to_tsval, tp->ts_recent)) { in tcp_do_segment() 2250 tp->ts_recent = 0; in tcp_do_segment() 2406 tp->ts_recent = to.to_tsval; in tcp_do_segment()
|
H A D | tcp_var.h | 367 uint32_t ts_recent; /* timestamp echo data */ member
|
H A D | tcp_output.c | 849 to.to_tsecr = tp->ts_recent; in tcp_default_output()
|
H A D | tcp_syncache.c | 938 tp->ts_recent = sc->sc_tsreflect; in syncache_socket()
|
H A D | tcp_usrreq.c | 3166 tp->ts_recent, tp->ts_recent_age); in db_print_tcpcb()
|
H A D | tcp_subr.c | 1959 to.to_tsecr = tp->ts_recent; in tcp_respond()
|
/freebsd/sys/dev/qlnx/qlnxe/ |
H A D | tcp_common.h | 142 __le32 ts_recent /* The timestamp value to send in the next ACK */; member 291 __le32 ts_recent /* The timestamp value to send in the next ACK */; member
|
H A D | ecore_iscsi_api.h | 134 u32 ts_recent; member
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | rack_bbr_common.c | 809 tp->ts_recent = 0; in ctf_ts_check() 840 tp->ts_recent = 0; in ctf_ts_check_ac()
|
H A D | bbr.c | 8453 (TSTMP_LT(to->to_tsval, tp->ts_recent)))) { in bbr_do_fastnewdata() 8465 tp->ts_recent = to->to_tsval; in bbr_do_fastnewdata() 8585 if ((to->to_flags & TOF_TS) && __predict_false(TSTMP_LT(to->to_tsval, tp->ts_recent))) { in bbr_fastack() 8647 tp->ts_recent = to->to_tsval; in bbr_fastack() 8999 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && in bbr_do_syn_recv() 9000 TSTMP_LT(to->to_tsval, tp->ts_recent)) { in bbr_do_syn_recv() 9038 tp->ts_recent = to->to_tsval; in bbr_do_syn_recv() 9235 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && in bbr_do_established() 9236 TSTMP_LT(to->to_tsval, tp->ts_recent)) { in bbr_do_established() 9262 tp->ts_recent = to->to_tsval; in bbr_do_established() [all …]
|
H A D | rack.c | 12541 (TSTMP_LT(to->to_tsval, tp->ts_recent)))) { in rack_do_fastnewdata() 12553 tp->ts_recent = to->to_tsval; in rack_do_fastnewdata() 12667 if ((to->to_flags & TOF_TS) && __predict_false(TSTMP_LT(to->to_tsval, tp->ts_recent))) { in rack_fastack() 12724 tp->ts_recent = to->to_tsval; in rack_fastack() 13123 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && in rack_do_syn_recv() 13124 TSTMP_LT(to->to_tsval, tp->ts_recent)) { in rack_do_syn_recv() 13162 tp->ts_recent = to->to_tsval; in rack_do_syn_recv() 13343 if ((to->to_flags & TOF_TS) != 0 && tp->ts_recent && in rack_do_established() 13344 TSTMP_LT(to->to_tsval, tp->ts_recent)) { in rack_do_established() 13370 tp->ts_recent = to->to_tsval; in rack_do_established() [all …]
|
/freebsd/cddl/lib/libdtrace/ |
H A D | tcp.d | 259 tcps_ts_recent = p == NULL ? -1 : p->ts_recent;
|
/freebsd/sys/dev/cxgbe/tom/ |
H A D | t4_cpl_io.c | 316 tp->ts_recent = 0; /* hmmm */ in assign_rxopt()
|