netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lawrence Brakmo <brakmo@fb.com>
To: netdev <netdev@vger.kernel.org>
Cc: Kernel Team <kernel-team@fb.com>,
	Neal Cardwell <ncardwell@google.com>,
	Eric Dumazet <eric.dumazet@gmail.com>
Subject: [RFC PATCH v2 net-next 0/3] tcp: add NV congestion control
Date: Tue, 21 Jul 2015 21:21:33 -0700	[thread overview]
Message-ID: <1437538896-1330704-1-git-send-email-brakmo@fb.com> (raw)

This patchset adds support for NV congestion control.

The first patch replaces two arguments in the pkts_acked() function
of the congestion control modules with a struct, making it easier to
add more parameters later without modifying the existing congestion
control modules.

The second patch adds the number of bytes in_flight when a packet is sent
to the tcp_skb_cb without increasing its size.

The third patch adds NV congestion control support.

[RFC PATCH v2 net-next 1/3] tcp: replace cnt & rtt with struct in pkts_acked()
[RFC PATCH v2 net-next 2/3] tcp: add in_flight to tcp_skb_cb
[RFC PATCH v2 net-next 3/3] tcp: add NV congestion control

Signed-off-by: Lawrence Brakmo <brakmo@fb.com>

 include/net/tcp.h          |  21 ++-
 net/ipv4/Kconfig           |  16 ++
 net/ipv4/Makefile          |   1 +
 net/ipv4/sysctl_net_ipv4.c |   9 +
 net/ipv4/tcp_bic.c         |   6 +-
 net/ipv4/tcp_cdg.c         |  14 +-
 net/ipv4/tcp_cubic.c       |   6 +-
 net/ipv4/tcp_htcp.c        |  10 +-
 net/ipv4/tcp_illinois.c    |  20 +-
 net/ipv4/tcp_input.c       |  12 +-
 net/ipv4/tcp_lp.c          |   6 +-
 net/ipv4/tcp_nv.c          | 479 ++++++++++++++++++++++++++++++++++++++++++++++++
 net/ipv4/tcp_output.c      |   4 +-
 net/ipv4/tcp_vegas.c       |   6 +-
 net/ipv4/tcp_vegas.h       |   2 +-
 net/ipv4/tcp_veno.c        |   6 +-
 net/ipv4/tcp_westwood.c    |   6 +-
 net/ipv4/tcp_yeah.c        |   6 +-
 18 files changed, 579 insertions(+), 51 deletions(-)

             reply	other threads:[~2015-07-22  4:21 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-22  4:21 Lawrence Brakmo [this message]
2015-07-22  4:21 ` [RFC PATCH v2 net-next 1/3] tcp: replace cnt & rtt with struct in pkts_acked() Lawrence Brakmo
2015-07-22  5:46   ` Eric Dumazet
2015-07-22 11:04     ` Neal Cardwell
2015-07-22  4:21 ` [RFC PATCH v2 net-next 2/3] tcp: add in_flight to tcp_skb_cb Lawrence Brakmo
2015-07-22  4:21 ` [RFC PATCH v2 net-next 3/3] tcp: add NV congestion control Lawrence Brakmo
2015-07-22  6:50   ` Yuchung Cheng
2015-07-22 11:27     ` Neal Cardwell
2015-07-24  0:47     ` Lawrence Brakmo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1437538896-1330704-1-git-send-email-brakmo@fb.com \
    --to=brakmo@fb.com \
    --cc=eric.dumazet@gmail.com \
    --cc=kernel-team@fb.com \
    --cc=ncardwell@google.com \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).