From: Cong Wang <xiyou.wangcong@gmail.com>
To: netdev@vger.kernel.org
Cc: bpf@vger.kernel.org, Cong Wang <cong.wang@bytedance.com>
Subject: [Patch bpf-next v3 0/4] sockmap: some performance optimizations
Date: Wed, 1 Jun 2022 18:21:01 -0700 [thread overview]
Message-ID: <20220602012105.58853-1-xiyou.wangcong@gmail.com> (raw)
From: Cong Wang <cong.wang@bytedance.com>
This patchset contains two optimizations for sockmap. The first one
eliminates a skb_clone() and the second one eliminates a memset(). With
this patchset, the throughput of UDP transmission via sockmap gets
improved by 61%.
v3: avoid touching tcp_recv_skb()
v2: clean up coding style for tcp_read_skb()
get rid of some redundant variables
add a comment for ->read_skb()
---
Cong Wang (4):
tcp: introduce tcp_read_skb()
net: introduce a new proto_ops ->read_skb()
skmsg: get rid of skb_clone()
skmsg: get rid of unncessary memset()
include/linux/net.h | 4 ++++
include/net/tcp.h | 1 +
include/net/udp.h | 3 +--
net/core/skmsg.c | 48 +++++++++++++++++----------------------------
net/ipv4/af_inet.c | 3 ++-
net/ipv4/tcp.c | 44 +++++++++++++++++++++++++++++++++++++++++
net/ipv4/udp.c | 11 +++++------
net/ipv6/af_inet6.c | 3 ++-
net/unix/af_unix.c | 23 +++++++++-------------
9 files changed, 86 insertions(+), 54 deletions(-)
--
2.34.1
next reply other threads:[~2022-06-02 1:21 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-02 1:21 Cong Wang [this message]
2022-06-02 1:21 ` [Patch bpf-next v3 1/4] tcp: introduce tcp_read_skb() Cong Wang
2022-06-09 15:08 ` John Fastabend
2022-06-09 18:50 ` Cong Wang
2022-06-09 19:12 ` John Fastabend
2022-06-14 17:19 ` Cong Wang
2022-06-14 19:55 ` John Fastabend
2022-06-02 1:21 ` [Patch bpf-next v3 2/4] net: introduce a new proto_ops ->read_skb() Cong Wang
2022-06-02 1:21 ` [Patch bpf-next v3 3/4] skmsg: get rid of skb_clone() Cong Wang
2022-06-02 1:21 ` [Patch bpf-next v3 4/4] skmsg: get rid of unncessary memset() Cong Wang
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=20220602012105.58853-1-xiyou.wangcong@gmail.com \
--to=xiyou.wangcong@gmail.com \
--cc=bpf@vger.kernel.org \
--cc=cong.wang@bytedance.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 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.