]> git.baikalelectronics.ru Git - kernel.git/commit
[TCP]: skb pcount with MTU discovery
authorDavid S. Miller <davem@sunset.davemloft.net>
Mon, 25 Apr 2005 02:12:33 +0000 (19:12 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 25 Apr 2005 02:12:33 +0000 (19:12 -0700)
commit23486a56d027dd510890550b01507141a33a240e
tree3811d84e83dab918c57aeca1081ae343cb97df8b
parent62665544b9306be1ff2106e384ac4137e6678a21
[TCP]: skb pcount with MTU discovery

The problem is that when doing MTU discovery, the too-large segments in
the write queue will be calculated as having a pcount of >1.  When
tcp_write_xmit() is trying to send, tcp_snd_test() fails the cwnd test
when pcount > cwnd.

The segments are eventually transmitted one at a time by keepalive, but
this can take a long time.

This patch checks if TSO is enabled when setting pcount.

Signed-off-by: John Heffner <jheffner@psc.edu>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/tcp.h
net/ipv4/tcp_output.c