Lines Matching refs:now
198 static void ccid2_cwnd_application_limited(struct sock *sk, const u32 now) in ccid2_cwnd_application_limited() argument
211 hc->tx_cwnd_stamp = now; in ccid2_cwnd_application_limited()
217 static void ccid2_cwnd_restart(struct sock *sk, const u32 now) in ccid2_cwnd_restart() argument
222 s32 delta = now - hc->tx_lsndtime; in ccid2_cwnd_restart()
232 hc->tx_cwnd_stamp = now; in ccid2_cwnd_restart()
242 const u32 now = ccid2_jiffies32; in ccid2_hc_tx_packet_sent() local
247 (s32)(now - hc->tx_lsndtime) >= hc->tx_rto) in ccid2_hc_tx_packet_sent()
248 ccid2_cwnd_restart(sk, now); in ccid2_hc_tx_packet_sent()
250 hc->tx_lsndtime = now; in ccid2_hc_tx_packet_sent()
257 hc->tx_cwnd_stamp = now; in ccid2_hc_tx_packet_sent()
264 if (ccid2_do_cwv && (s32)(now - hc->tx_cwnd_stamp) >= hc->tx_rto) in ccid2_hc_tx_packet_sent()
265 ccid2_cwnd_application_limited(sk, now); in ccid2_hc_tx_packet_sent()
270 hc->tx_seqh->ccid2s_sent = now; in ccid2_hc_tx_packet_sent()