]> git.baikalelectronics.ru Git - kernel.git/commit
tcp: remove tcp_ecn_make_synack() socket argument
authorEric Dumazet <edumazet@google.com>
Fri, 25 Sep 2015 14:39:18 +0000 (07:39 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 25 Sep 2015 20:00:38 +0000 (13:00 -0700)
commit80d9a388e44a48ae5ae252145a2c798aa3ffdcae
tree154c40ca207c6556ad154aeb77f8ab74ae21ac4c
parent71cce337afc6d2cc28562590bc08e4eb6c339b6a
tcp: remove tcp_ecn_make_synack() socket argument

SYNACK packets might be sent without holding socket lock.

For DCTCP/ECN sake, we should call INET_ECN_xmit() while
socket lock is owned, and only when we init/change congestion control.

This also fixies a bug if congestion module is changed from
dctcp to another one on a listener : we now clear ECN bits
properly.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_cong.c
net/ipv4/tcp_output.c