[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)
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>

No differences found