Re: [PATCH net] tcp: restore fastopen with no data in SYN packet

2015-12-17 Thread David Miller
From: Eric Dumazet Date: Wed, 16 Dec 2015 13:53:10 -0800 > From: Eric Dumazet > > Yuchung tracked a regression caused by commit 57be5bdad759 ("ip: convert > tcp_sendmsg() to iov_iter primitives") for TCP Fast Open. > > Some Fast Open users do not actually add any data in the SYN packet. > > F

Re: [PATCH net] tcp: restore fastopen with no data in SYN packet

2015-12-16 Thread Yuchung Cheng
On Wed, Dec 16, 2015 at 1:53 PM, Eric Dumazet wrote: > > From: Eric Dumazet > > Yuchung tracked a regression caused by commit 57be5bdad759 ("ip: convert > tcp_sendmsg() to iov_iter primitives") for TCP Fast Open. > > Some Fast Open users do not actually add any data in the SYN packet. > > Fixes:

[PATCH net] tcp: restore fastopen with no data in SYN packet

2015-12-16 Thread Eric Dumazet
From: Eric Dumazet Yuchung tracked a regression caused by commit 57be5bdad759 ("ip: convert tcp_sendmsg() to iov_iter primitives") for TCP Fast Open. Some Fast Open users do not actually add any data in the SYN packet. Fixes: 57be5bdad759 ("ip: convert tcp_sendmsg() to iov_iter primitives") Rep