From: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
To: netdev@vger.kernel.org
Cc: Vlad Yasevich <vyasevich@gmail.com>,
Neil Horman <nhorman@tuxdriver.com>,
linux-sctp@vger.kernel.org,
David Laight <David.Laight@ACULAB.COM>,
Alexander Duyck <alexander.duyck@gmail.com>,
Xin Long <lucien.xin@gmail.com>
Subject: Re: [PATCH 0/2] sctp: Add GSO support
Date: Fri, 29 Apr 2016 21:38:02 +0000 [thread overview]
Message-ID: <20160429213802.GC5676@localhost.localdomain> (raw)
In-Reply-To: <cover.1461965035.git.marcelo.leitner@gmail.com>
Cc'ing Xin. Sorry Xin.
On Fri, Apr 29, 2016 at 06:33:31PM -0300, Marcelo Ricardo Leitner wrote:
> This patchset adds sctp GSO support.
>
> Performance tests indicates that increases throughput by 10% if using
> bigger chunk sizes, specially if bigger than MTU. For small chunks, it
> doesn't help much if not using heavy firewall rules.
>
> For small chunks it will probably be of more use once we get something
> like MSG_MORE as David Laight had suggested.
>
> I believe I could address all comments from the RFC attempt.
>
> Marcelo Ricardo Leitner (2):
> skbuff: export skb_gro_receive
> sctp: Add GSO support
>
> include/linux/netdev_features.h | 7 +-
> include/linux/netdevice.h | 1 +
> include/linux/skbuff.h | 7 +
> include/net/sctp/sctp.h | 4 +
> include/net/sctp/structs.h | 2 +
> net/core/skbuff.c | 11 +-
> net/ipv4/af_inet.c | 1 +
> net/sctp/Makefile | 3 +-
> net/sctp/offload.c | 98 +++++++++++
> net/sctp/output.c | 348 +++++++++++++++++++++++++++-------------
> net/sctp/protocol.c | 3 +
> net/sctp/socket.c | 2 +
> 12 files changed, 366 insertions(+), 121 deletions(-)
> create mode 100644 net/sctp/offload.c
>
> --
WARNING: multiple messages have this Message-ID (diff)
From: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
To: netdev@vger.kernel.org
Cc: Vlad Yasevich <vyasevich@gmail.com>,
Neil Horman <nhorman@tuxdriver.com>,
linux-sctp@vger.kernel.org,
David Laight <David.Laight@ACULAB.COM>,
Alexander Duyck <alexander.duyck@gmail.com>,
Xin Long <lucien.xin@gmail.com>
Subject: Re: [PATCH 0/2] sctp: Add GSO support
Date: Fri, 29 Apr 2016 18:38:02 -0300 [thread overview]
Message-ID: <20160429213802.GC5676@localhost.localdomain> (raw)
In-Reply-To: <cover.1461965035.git.marcelo.leitner@gmail.com>
Cc'ing Xin. Sorry Xin.
On Fri, Apr 29, 2016 at 06:33:31PM -0300, Marcelo Ricardo Leitner wrote:
> This patchset adds sctp GSO support.
>
> Performance tests indicates that increases throughput by 10% if using
> bigger chunk sizes, specially if bigger than MTU. For small chunks, it
> doesn't help much if not using heavy firewall rules.
>
> For small chunks it will probably be of more use once we get something
> like MSG_MORE as David Laight had suggested.
>
> I believe I could address all comments from the RFC attempt.
>
> Marcelo Ricardo Leitner (2):
> skbuff: export skb_gro_receive
> sctp: Add GSO support
>
> include/linux/netdev_features.h | 7 +-
> include/linux/netdevice.h | 1 +
> include/linux/skbuff.h | 7 +
> include/net/sctp/sctp.h | 4 +
> include/net/sctp/structs.h | 2 +
> net/core/skbuff.c | 11 +-
> net/ipv4/af_inet.c | 1 +
> net/sctp/Makefile | 3 +-
> net/sctp/offload.c | 98 +++++++++++
> net/sctp/output.c | 348 +++++++++++++++++++++++++++-------------
> net/sctp/protocol.c | 3 +
> net/sctp/socket.c | 2 +
> 12 files changed, 366 insertions(+), 121 deletions(-)
> create mode 100644 net/sctp/offload.c
>
> --
next prev parent reply other threads:[~2016-04-29 21:38 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-29 21:33 [PATCH 0/2] sctp: Add GSO support Marcelo Ricardo Leitner
2016-04-29 21:33 ` Marcelo Ricardo Leitner
2016-04-29 21:33 ` [PATCH 1/2] skbuff: export skb_gro_receive Marcelo Ricardo Leitner
2016-04-29 21:33 ` Marcelo Ricardo Leitner
2016-04-29 21:33 ` [PATCH 2/2] sctp: Add GSO support Marcelo Ricardo Leitner
2016-04-29 21:33 ` Marcelo Ricardo Leitner
2016-04-29 21:38 ` Marcelo Ricardo Leitner [this message]
2016-04-29 21:38 ` [PATCH 0/2] " Marcelo Ricardo Leitner
2016-05-02 23:16 ` David Miller
2016-05-02 23:16 ` David Miller
2016-05-03 11:49 ` Marcelo Ricardo Leitner
2016-05-03 11:49 ` Marcelo Ricardo Leitner
2016-05-03 16:09 ` David Miller
2016-05-03 16:09 ` David Miller
2016-05-03 16:47 ` Marcelo Ricardo Leitner
2016-05-03 16:47 ` Marcelo Ricardo Leitner
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=20160429213802.GC5676@localhost.localdomain \
--to=marcelo.leitner@gmail.com \
--cc=David.Laight@ACULAB.COM \
--cc=alexander.duyck@gmail.com \
--cc=linux-sctp@vger.kernel.org \
--cc=lucien.xin@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=nhorman@tuxdriver.com \
--cc=vyasevich@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.