Searched refs:hc (Results 1 – 4 of 4) sorted by relevance
25 static int ccid2_hc_tx_alloc_seq(struct ccid2_hc_tx_sock *hc) in ccid2_hc_tx_alloc_seq() argument31 if (hc->tx_seqbufc >= (sizeof(hc->tx_seqbuf) / in ccid2_hc_tx_alloc_seq()49 if (hc->tx_seqbufc == 0) in ccid2_hc_tx_alloc_seq()50 hc->tx_seqh = hc->tx_seqt = seqp; in ccid2_hc_tx_alloc_seq()53 hc->tx_seqh->ccid2s_next = seqp; in ccid2_hc_tx_alloc_seq()54 seqp->ccid2s_prev = hc->tx_seqh; in ccid2_hc_tx_alloc_seq()56 hc->tx_seqt->ccid2s_prev = &seqp[CCID2_SEQBUF_LEN - 1]; in ccid2_hc_tx_alloc_seq()57 seqp[CCID2_SEQBUF_LEN - 1].ccid2s_next = hc->tx_seqt; in ccid2_hc_tx_alloc_seq()61 hc->tx_seqbuf[hc->tx_seqbufc] = seqp; in ccid2_hc_tx_alloc_seq()62 hc->tx_seqbufc++; in ccid2_hc_tx_alloc_seq()[all …]
53 struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk); in ccid3_hc_tx_set_state() local54 enum ccid3_hc_tx_states oldstate = hc->tx_state; in ccid3_hc_tx_set_state()60 hc->tx_state = state; in ccid3_hc_tx_set_state()74 const struct ccid3_hc_tx_sock *hc = ccid3_hc_tx_sk(sk); in rfc3390_initial_rate() local75 const __u32 w_init = clamp_t(__u32, 4380U, 2 * hc->tx_s, 4 * hc->tx_s); in rfc3390_initial_rate()77 return scaled_div(w_init << 6, hc->tx_rtt); in rfc3390_initial_rate()86 static void ccid3_update_send_interval(struct ccid3_hc_tx_sock *hc) in ccid3_update_send_interval() argument88 hc->tx_t_ipi = scaled_div32(((u64)hc->tx_s) << 6, hc->tx_x); in ccid3_update_send_interval()90 DCCP_BUG_ON(hc->tx_t_ipi == 0); in ccid3_update_send_interval()91 ccid3_pr_debug("t_ipi=%u, s=%u, X=%u\n", hc->tx_t_ipi, in ccid3_update_send_interval()[all …]
90 static inline bool ccid2_cwnd_network_limited(struct ccid2_hc_tx_sock *hc) in ccid2_cwnd_network_limited() argument92 return hc->tx_pipe >= hc->tx_cwnd; in ccid2_cwnd_network_limited()
38 struct ccid3_hc_tx_sock *hc = NULL;41 hc = ccid3_hc_tx_sk(sk);53 if (hc) {54 __entry->tx_s = hc->tx_s;55 __entry->tx_rtt = hc->tx_rtt;56 __entry->tx_p = hc->tx_p;57 __entry->tx_x_calc = hc->tx_x_calc;58 __entry->tx_x_recv = hc->tx_x_recv >> 6;59 __entry->tx_x = hc->tx_x >> 6;60 __entry->tx_t_ipi = hc->tx_t_ipi;