net: TCP thin dupack
This patch enables fast retransmissions after one dupACK for TCP if the stream is identified as thin. This will reduce latencies for thin streams that are not able to trigger fast retransmissions due to high packet interarrival time. This mechanism is only active if enabled by iocontrol or syscontrol and the stream is identified as thin. Signed-off-by: Andreas Petlund <apetlund@simula.no> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
36e31b0af5
commit
7e38017557
@ -2236,6 +2236,13 @@ static int do_tcp_setsockopt(struct sock *sk, int level,
|
||||
tp->thin_lto = val;
|
||||
break;
|
||||
|
||||
case TCP_THIN_DUPACK:
|
||||
if (val < 0 || val > 1)
|
||||
err = -EINVAL;
|
||||
else
|
||||
tp->thin_dupack = val;
|
||||
break;
|
||||
|
||||
case TCP_CORK:
|
||||
/* When set indicates to always queue non-full frames.
|
||||
* Later the user clears this option and we transmit
|
||||
|
Reference in New Issue
Block a user