mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 22:52:35 +02:00
tcp: ipv4: initialize unicast_sock sk_pacing_rate
[ Upstream commit811230cd85] When I added sk_pacing_rate field, I forgot to initialize its value in the per cpu unicast_sock used in ip_send_unicast_reply() This means that for sch_fq users, RST packets, or ACK packets sent on behalf of TIME_WAIT sockets might be sent to slowly or even dropped once we reach the per flow limit. Signed-off-by: Eric Dumazet <edumazet@google.com> Fixes:95bd09eb27("tcp: TSO packets automatic sizing") Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b4faf21b76
commit
23990c29a7
|
|
@ -1465,6 +1465,7 @@ static DEFINE_PER_CPU(struct inet_sock, unicast_sock) = {
|
|||
.sk_wmem_alloc = ATOMIC_INIT(1),
|
||||
.sk_allocation = GFP_ATOMIC,
|
||||
.sk_flags = (1UL << SOCK_USE_WRITE_QUEUE),
|
||||
.sk_pacing_rate = ~0U,
|
||||
},
|
||||
.pmtudisc = IP_PMTUDISC_WANT,
|
||||
.uc_ttl = -1,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user