From: Lorenzo Bianconi <lorenzo@kernel.org>
To: bpf@vger.kernel.org
Cc: netdev@vger.kernel.org, davem@davemloft.net, kuba@kernel.org,
daniel@iogearbox.net, ast@kernel.org, echaudro@redhat.com,
dsahern@gmail.com, magnus.karlsson@intel.com, toke@redhat.com,
brouer@redhat.com, bjorn@kernel.org,
maciej.fijalkowski@intel.com, john.fastabend@gmail.com
Subject: [RFC bpf-next 0/4] add partial rx hw csum offload support for XDP
Date: Fri, 28 May 2021 19:43:40 +0200 [thread overview]
Message-ID: <cover.1622222367.git.lorenzo@kernel.org> (raw)
Enable xdp rx checksum offload support for CHECKSUM_UNNECESSARY use-case.
Introduce flag field in xdp_buff/xdp_frame in order to save the checksum
result from the NIC and have a fast access to it performing XDP_REDIRECT.
CHECKSUM_COMPLETE is not supported yet since it will require adding the
csum result to the xdp_metadata area.
Moreover flag field will be reused for xdp multi-buff support.
This series has been tested generating UDP traffic with pktgen and performing
a xdp_redirect from an ixgbe device to a remote CPUMAP entry. PPS results show
a negligible penalty respect to the baseline where the UDP checksum has been
disabled. More info about the test can be found here [0].
[0] https://github.com/xdp-project/xdp-project/blob/master/areas/core/xdp_frame01_checksum.org
Lorenzo Bianconi (4):
net: xdp: introduce flags field in xdp_buff and xdp_frame
mvneta: return csum computation result from mvneta_rx_csum
net: mvneta: report csum result in xdp_buff
net: xdp: update csum building the skb
drivers/net/ethernet/marvell/mvneta.c | 27 ++++++++------------
include/net/xdp.h | 36 +++++++++++++++++++++++++++
net/core/xdp.c | 2 +-
3 files changed, 48 insertions(+), 17 deletions(-)
--
2.31.1
next reply other threads:[~2021-05-28 17:44 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-28 17:43 Lorenzo Bianconi [this message]
2021-05-28 17:43 ` [RFC bpf-next 1/4] net: xdp: introduce flags field in xdp_buff and xdp_frame Lorenzo Bianconi
2021-05-28 21:18 ` Tom Herbert
2021-05-29 1:33 ` David Ahern
2021-05-29 4:56 ` Jakub Kicinski
2021-05-29 13:37 ` Lorenzo Bianconi
2021-05-29 13:34 ` Lorenzo Bianconi
2021-05-31 11:07 ` Jesper Dangaard Brouer
2021-05-28 17:43 ` [RFC bpf-next 2/4] mvneta: return csum computation result from mvneta_rx_csum Lorenzo Bianconi
2021-05-28 17:43 ` [RFC bpf-next 3/4] net: mvneta: report csum result in xdp_buff Lorenzo Bianconi
2021-05-28 17:43 ` [RFC bpf-next 4/4] net: xdp: update csum building the skb Lorenzo Bianconi
2021-05-28 18:01 ` [RFC bpf-next 0/4] add partial rx hw csum offload support for XDP David Ahern
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=cover.1622222367.git.lorenzo@kernel.org \
--to=lorenzo@kernel.org \
--cc=ast@kernel.org \
--cc=bjorn@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=brouer@redhat.com \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=dsahern@gmail.com \
--cc=echaudro@redhat.com \
--cc=john.fastabend@gmail.com \
--cc=kuba@kernel.org \
--cc=maciej.fijalkowski@intel.com \
--cc=magnus.karlsson@intel.com \
--cc=netdev@vger.kernel.org \
--cc=toke@redhat.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.