/freebsd/sys/netinet/khelp/ |
H A D | h_ertt.c | 203 int acked, measurenext_len, multiack, new_sacked_bytes, rtt_bytes_adjust; in ertt_packet_measurement_hook() local 217 acked = th->th_ack - tp->snd_una; in ertt_packet_measurement_hook() 222 if (acked > 0 || new_sacked_bytes) { in ertt_packet_measurement_hook() 223 if (acked == 0 && new_sacked_bytes) { in ertt_packet_measurement_hook() 253 if (acked > tp->t_maxseg) { in ertt_packet_measurement_hook() 258 } else if (acked > txsi->len) { in ertt_packet_measurement_hook() 263 } else if (acked == tp->t_maxseg || in ertt_packet_measurement_hook() 264 acked == txsi->len) { in ertt_packet_measurement_hook() 368 if (txsi->len > acked) { in ertt_packet_measurement_hook() 369 txsi->len -= acked; in ertt_packet_measurement_hook() [all …]
|
/freebsd/sys/fs/nfs/ |
H A D | nfsrvcache.h | 68 int acked; member 86 #define rc_acked rc_un2.ot.acked
|
/freebsd/contrib/tcpdump/ |
H A D | README.md | 116 were sent. 200ms later they were acked. Shortly thereafter 117 bytes 1024-1535 were sent and again acked after 200ms. 121 1536, 1536 is re-acked when 0 arrives. 144 8 - number of times chunk was acked 171 2 seconds on the average). It was acked once, 140ms 180 or acked. I typically plot this data looking for suspicious
|
/freebsd/sys/contrib/dev/athk/ath12k/ |
H A D | dp_tx.h | 14 bool acked; member
|
H A D | dp_tx.c | 395 if (ts->acked) { in ath12k_dp_tx_htt_tx_complete_buf() 432 ts.acked = (wbm_status == HAL_WBM_REL_HTT_TX_COMP_STATUS_OK); in ath12k_dp_tx_process_htt_tx_complete()
|
/freebsd/sys/contrib/dev/athk/ath11k/ |
H A D | dp_tx.h | 14 bool acked; member
|
H A D | dp_tx.c | 361 if (ts->acked) { in ath11k_dp_tx_htt_tx_complete_buf() 417 ts.acked = (wbm_status == HAL_WBM_REL_HTT_TX_COMP_STATUS_OK); in ath11k_dp_tx_process_htt_tx_complete()
|
/freebsd/sys/netinet/ |
H A D | tcp_input.c | 1523 int acked, ourfinisacked, needoutput = 0; in tcp_do_segment() local 1828 acked = BYTES_THIS_ACK(tp, th); in tcp_do_segment() 1836 TCPSTAT_ADD(tcps_rcvackbyte, acked); in tcp_do_segment() 1837 sbdrop(&so->so_snd, acked); in tcp_do_segment() 1877 else if (acked > 1) in tcp_do_segment() 2942 acked = BYTES_THIS_ACK(tp, th); in tcp_do_segment() 2943 KASSERT(acked >= 0, ("%s: acked unexepectedly negative " in tcp_do_segment() 2947 TCPSTAT_ADD(tcps_rcvackbyte, acked); in tcp_do_segment() 2999 acked == sbavail(&so->so_snd)) || in tcp_do_segment() 3000 acked > sbavail(&so->so_snd)) in tcp_do_segment() [all …]
|
H A D | sctp_indata.c | 3827 int inflight = 0, resend = 0, inbetween = 0, acked = 0, above = 0; in sctp_fs_audit() local 3855 acked++; in sctp_fs_audit() 3862 inflight, inbetween, resend, above, acked); in sctp_fs_audit() 3867 inflight, inbetween, resend, above, acked); in sctp_fs_audit()
|
/freebsd/contrib/wpa/src/pasn/ |
H A D | pasn_common.h | 172 const u8 *data, size_t data_len, u8 acked);
|
H A D | pasn_initiator.c | 1367 const u8 *data, size_t data_len, u8 acked) in wpa_pasn_auth_tx_status() argument 1373 wpa_printf(MSG_DEBUG, "PASN: auth_tx_status: acked=%u", acked); in wpa_pasn_auth_tx_status() 1388 acked); in wpa_pasn_auth_tx_status()
|
/freebsd/sys/contrib/dev/rtw88/ |
H A D | tx.c | 229 struct sk_buff *skb, bool acked) in rtw_tx_report_tx_status() argument 235 if (acked) in rtw_tx_report_tx_status()
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | pasn_supplicant.c | 892 const u8 *data, size_t data_len, u8 acked) in wpas_pasn_auth_tx_status() argument 904 ret = wpa_pasn_auth_tx_status(pasn, data, data_len, acked); in wpas_pasn_auth_tx_status()
|
H A D | wpa_supplicant_i.h | 2000 const u8 *data, size_t data_len, u8 acked);
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | rack.c | 5464 uint32_t prior_cwnd, acked; in rack_ack_received() local 5470 acked = tp->t_ccv.bytes_this_ack = (th_ack - tp->snd_una); in rack_ack_received() 5573 if (acked <= rack->r_ctl.rc_out_at_rto){ in rack_ack_received() 5574 rack->r_ctl.rc_out_at_rto -= acked; in rack_ack_received() 10784 uint32_t cts, acked, ack_point; in rack_log_ack() local 10954 acked = rack_proc_sack_blk(tp, rack, &sack_blocks[0], to, &rsm, cts, segsiz); in rack_log_ack() 10955 if (acked) { in rack_log_ack() 10957 changed += acked; in rack_log_ack() 10970 counter_u64_add(rack_ack_total, (acked / ctf_fixed_maxseg(rack->rc_tp))); in rack_log_ack() 10984 acked = rack_proc_sack_blk(tp, rack, &sack_blocks[i], to, &rsm, cts, segsiz); in rack_log_ack() [all …]
|
H A D | bbr.c | 7293 uint32_t cts, acked, ack_point, sack_changed = 0; in bbr_log_ack() local 7610 acked = bbr_proc_sack_blk(tp, bbr, &sack_blocks[i], to, &rsm, cts); in bbr_log_ack() 7611 if (acked) { in bbr_log_ack() 7613 changed += acked; in bbr_log_ack() 7614 sack_changed += acked; in bbr_log_ack() 7686 int32_t acked; in bbr_process_ack() local 7791 acked = BYTES_THIS_ACK(tp, th); in bbr_process_ack() 7793 KMOD_TCPSTAT_ADD(tcps_rcvackbyte, acked); in bbr_process_ack() 7808 acked_amount = min(acked, (int)sbavail(&so->so_snd)); in bbr_process_ack() 7818 …bbr_ack_received(tp, bbr, th, acked, sack_changed, prev_acked, __LINE__, (bbr->r_ctl.rc_lost - los… in bbr_process_ack() [all …]
|
/freebsd/sys/dev/bwi/ |
H A D | if_bwi.c | 3293 _bwi_txeof(struct bwi_softc *sc, uint16_t tx_id, int acked, int data_txcnt) in _bwi_txeof() argument 3318 buf_idx, acked, data_txcnt, tb->tb_ni); in _bwi_txeof() 3337 txs.long_retries = acked; in _bwi_txeof() 3346 ieee80211_tx_complete(ni, tb->tb_mbuf, !acked); in _bwi_txeof()
|
/freebsd/sys/dev/aic7xxx/ |
H A D | aic79xx.seq | 1716 * some overrun bytes into the data FIFO and acked them 1883 * already seen and acked (REQINIT never comes true).
|
H A D | aic7xxx.seq | 1045 * the data FIFO and acked them on the bus. The only
|
/freebsd/contrib/wpa/src/drivers/ |
H A D | driver_nl80211.c | 2134 int res, found_ee = 0, found_wifi = 0, acked = 0; in wpa_driver_nl80211_handle_eapol_tx_status() local 2158 acked = *ack; in wpa_driver_nl80211_handle_eapol_tx_status() 2178 event.eapol_tx_status.ack = acked; in wpa_driver_nl80211_handle_eapol_tx_status()
|