tcp: Check pending ACK every two thirds of window, not every half
...to spare some syscalls. If it's not enough, the timer will take care of it. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
ffaf1d09f2
commit
98dfe1cdf4
1 changed files with 1 additions and 1 deletions
2
tcp.c
2
tcp.c
|
@ -2314,7 +2314,7 @@ out:
|
||||||
int ack_offset = conn->seq_from_tap - conn->seq_ack_to_tap;
|
int ack_offset = conn->seq_from_tap - conn->seq_ack_to_tap;
|
||||||
|
|
||||||
if (c->mode == MODE_PASTA ||
|
if (c->mode == MODE_PASTA ||
|
||||||
psh || SEQ_GE(ack_offset, conn->wnd_to_tap / 2) ||
|
psh || SEQ_GE(ack_offset, conn->wnd_to_tap * 2 / 3) ||
|
||||||
ack_to_tap > ACK_INTERVAL) {
|
ack_to_tap > ACK_INTERVAL) {
|
||||||
tcp_send_to_tap(c, conn, psh ? FORCE_ACK : 0, now);
|
tcp_send_to_tap(c, conn, psh ? FORCE_ACK : 0, now);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue