Home
last modified time | relevance | path

Searched refs:tx_x_recv (Results 1 – 3 of 3) sorted by relevance

/net/dccp/
Dtrace.h31 __field(__u64, tx_x_recv)
58 __entry->tx_x_recv = hc->tx_x_recv >> 6;
73 __entry->tx_x_calc, __entry->tx_x_recv, __entry->tx_x,
/net/dccp/ccids/
Dccid3.c114 __u64 min_rate = 2 * hc->tx_x_recv; in ccid3_hc_tx_update_x()
126 min_rate = max(min_rate, 2 * hc->tx_x_recv); in ccid3_hc_tx_update_x()
146 (unsigned int)(hc->tx_x_recv >> 6)); in ccid3_hc_tx_update_x()
230 if (hc->tx_x_calc > (hc->tx_x_recv >> 5)) in ccid3_hc_tx_no_feedback_timer()
231 hc->tx_x_recv = in ccid3_hc_tx_no_feedback_timer()
232 max(hc->tx_x_recv / 2, in ccid3_hc_tx_no_feedback_timer()
235 hc->tx_x_recv = hc->tx_x_calc; in ccid3_hc_tx_no_feedback_timer()
236 hc->tx_x_recv <<= 4; in ccid3_hc_tx_no_feedback_timer()
419 (unsigned int)(hc->tx_x_recv >> 6), in ccid3_hc_tx_packet_recv()
473 hc->tx_x_recv = opt_val; in ccid3_hc_tx_parse_options()
[all …]
Dccid3.h85 u64 tx_x_recv; member