netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] tcp: IPv6 support for fastopen server
@ 2014-05-12  3:22 Yuchung Cheng
  2014-05-12  3:22 ` [PATCH 1/5] tcp: move fastopen functions to tcp_fastopen.c Yuchung Cheng
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Yuchung Cheng @ 2014-05-12  3:22 UTC (permalink / raw)
  To: davem, ncardwell, edumazet; +Cc: longinus00, hkchu, netdev, Yuchung Cheng

This patch series add IPv6 support for fastopen server. To minimize
code duplication in IPv4 and IPv6, the current v4 only code is
refactored and common code is moved into net/ipv4/tcp_fastopen.c.

Also the current code uses a different function from
tcp_v4_send_synack() to send the first SYN-ACK in fastopen.
The new code eliminates this separate function by refactoring the
child-socket and syn-ack creation code.  After these refactoring
in the first four patches, we can easily add the fastopen code in
IPv6 by changing corresponding IPv6 functions.

Note Fast Open client already supports IPv6. This patch is for
the server-side (passive open) IPv6 support only.

Daniel Lee (1):
  tcp: IPv6 support for fastopen server

Yuchung Cheng (4):
  tcp: move fastopen functions to tcp_fastopen.c
  tcp: simplify fast open cookie processing
  tcp: use tcp_v4_send_synack on first SYN-ACK
  tcp: improve fastopen icmp handling

 include/linux/tcp.h      |   5 -
 include/net/tcp.h        |  15 ++-
 net/ipv4/tcp_fastopen.c  | 219 +++++++++++++++++++++++++++++++++++--
 net/ipv4/tcp_ipv4.c      | 277 +++++------------------------------------------
 net/ipv4/tcp_minisocks.c |  31 ++++++
 net/ipv4/tcp_output.c    |  23 +---
 net/ipv6/tcp_ipv6.c      |  62 ++++++++---
 7 files changed, 323 insertions(+), 309 deletions(-)

-- 
1.9.1.423.g4596e3a

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2014-05-13 21:54 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-12  3:22 [PATCH 0/5] tcp: IPv6 support for fastopen server Yuchung Cheng
2014-05-12  3:22 ` [PATCH 1/5] tcp: move fastopen functions to tcp_fastopen.c Yuchung Cheng
2014-05-12 19:16   ` Neal Cardwell
2014-05-12  3:22 ` [PATCH 2/5] tcp: simplify fast open cookie processing Yuchung Cheng
2014-05-12 19:23   ` Neal Cardwell
2014-05-12  3:22 ` [PATCH 3/5] tcp: use tcp_v4_send_synack on first SYN-ACK Yuchung Cheng
2014-05-12 19:29   ` Neal Cardwell
2014-05-12  3:22 ` [PATCH 4/5] tcp: improve fastopen icmp handling Yuchung Cheng
2014-05-12 19:30   ` Neal Cardwell
2014-05-12  3:22 ` [PATCH 5/5] tcp: IPv6 support for fastopen server Yuchung Cheng
2014-05-12 19:35   ` Neal Cardwell
2014-05-12  3:26 ` [PATCH 0/5] " Yuchung Cheng
2014-05-12  3:33   ` David Miller
2014-05-13 21:54 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).