- 论坛徽章:
- 0
|
回复 4# linux_26
3.2.18的逻辑稍微有些不同,看这段代码,设置delack_timer的是最后一句sk_reset_timer吗?怎么看都不像。。。- void tcp_send_delayed_ack(struct sock *sk)
- {
- struct inet_connection_sock *icsk = inet_csk(sk);
- int ato = icsk->icsk_ack.ato;
- unsigned long timeout;
- if (ato > TCP_DELACK_MIN) {
- const struct tcp_sock *tp = tcp_sk(sk);
- int max_ato = HZ / 2;
- if (icsk->icsk_ack.pingpong ||
- (icsk->icsk_ack.pending & ICSK_ACK_PUSHED))
- max_ato = TCP_DELACK_MAX;
- /* Slow path, intersegment interval is "high". */
- /* If some rtt estimate is known, use it to bound delayed ack.
- * Do not use inet_csk(sk)->icsk_rto here, use results of rtt measurements
- * directly.
- */
- if (tp->srtt) {
- int rtt = max(tp->srtt >> 3, TCP_DELACK_MIN);
- if (rtt < max_ato)
- max_ato = rtt;
- }
- ato = min(ato, max_ato);
- }
- /* Stay within the limit we were given */
- timeout = jiffies + ato;
- /* Use new timeout only if there wasn't a older one earlier. */
- if (icsk->icsk_ack.pending & ICSK_ACK_TIMER) {
- /* If delack timer was blocked or is about to expire,
- * send ACK now.
- */
- if (icsk->icsk_ack.blocked ||
- time_before_eq(icsk->icsk_ack.timeout, jiffies + (ato >> 2))) {
- tcp_send_ack(sk);
- return;
- }
- if (!time_before(timeout, icsk->icsk_ack.timeout))
- timeout = icsk->icsk_ack.timeout;
- }
- icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER;
- icsk->icsk_ack.timeout = timeout;
- sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout);
- }
复制代码- void sk_reset_timer(struct sock *sk, struct timer_list* timer,
- unsigned long expires)
- {
- if (!mod_timer(timer, expires))
- sock_hold(sk);
- }
复制代码 |
|