netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Cc: netdev@vger.kernel.org, mst@redhat.com, jasowang@redhat.com,
	davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
	pabeni@redhat.com, ast@kernel.org, daniel@iogearbox.net,
	hawk@kernel.org, john.fastabend@gmail.com,
	virtualization@lists.linux-foundation.org, bpf@vger.kernel.org
Subject: Re: [PATCH net-next v5 00/15] virtio_net: refactor xdp codes
Date: Wed, 10 May 2023 02:50:26 +0000	[thread overview]
Message-ID: <168368702613.23144.13458642339700236476.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20230508061417.65297-1-xuanzhuo@linux.alibaba.com>

Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Mon,  8 May 2023 14:14:02 +0800 you wrote:
> Due to historical reasons, the implementation of XDP in virtio-net is relatively
> chaotic. For example, the processing of XDP actions has two copies of similar
> code. Such as page, xdp_page processing, etc.
> 
> The purpose of this patch set is to refactor these code. Reduce the difficulty
> of subsequent maintenance. Subsequent developers will not introduce new bugs
> because of some complex logical relationships.
> 
> [...]

Here is the summary with links:
  - [net-next,v5,01/15] virtio_net: mergeable xdp: put old page immediately
    https://git.kernel.org/netdev/net-next/c/363d8ce4b947
  - [net-next,v5,02/15] virtio_net: introduce mergeable_xdp_get_buf()
    https://git.kernel.org/netdev/net-next/c/ad4858beb824
  - [net-next,v5,03/15] virtio_net: optimize mergeable_xdp_get_buf()
    https://git.kernel.org/netdev/net-next/c/dbe4fec2447d
  - [net-next,v5,04/15] virtio_net: introduce virtnet_xdp_handler() to seprate the logic of run xdp
    https://git.kernel.org/netdev/net-next/c/00765f8ed742
  - [net-next,v5,05/15] virtio_net: separate the logic of freeing xdp shinfo
    https://git.kernel.org/netdev/net-next/c/bb2c1e9e75be
  - [net-next,v5,06/15] virtio_net: separate the logic of freeing the rest mergeable buf
    https://git.kernel.org/netdev/net-next/c/80f50f918c6e
  - [net-next,v5,07/15] virtio_net: virtnet_build_xdp_buff_mrg() auto release xdp shinfo
    https://git.kernel.org/netdev/net-next/c/4cb00b13c064
  - [net-next,v5,08/15] virtio_net: introduce receive_mergeable_xdp()
    https://git.kernel.org/netdev/net-next/c/d8f2835a4746
  - [net-next,v5,09/15] virtio_net: merge: remove skip_xdp
    https://git.kernel.org/netdev/net-next/c/59ba3b1a88a8
  - [net-next,v5,10/15] virtio_net: introduce receive_small_xdp()
    https://git.kernel.org/netdev/net-next/c/c5f3e72f04c0
  - [net-next,v5,11/15] virtio_net: small: remove the delta
    https://git.kernel.org/netdev/net-next/c/fc8ce84b09bc
  - [net-next,v5,12/15] virtio_net: small: avoid code duplication in xdp scenarios
    https://git.kernel.org/netdev/net-next/c/7af70fc169bd
  - [net-next,v5,13/15] virtio_net: small: remove skip_xdp
    https://git.kernel.org/netdev/net-next/c/aef76506bc64
  - [net-next,v5,14/15] virtio_net: introduce receive_small_build_xdp
    https://git.kernel.org/netdev/net-next/c/19e8c85e336d
  - [net-next,v5,15/15] virtio_net: introduce virtnet_build_skb()
    https://git.kernel.org/netdev/net-next/c/21e26a71f5d3

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



      parent reply	other threads:[~2023-05-10  2:50 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-08  6:14 [PATCH net-next v5 00/15] virtio_net: refactor xdp codes Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 01/15] virtio_net: mergeable xdp: put old page immediately Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 02/15] virtio_net: introduce mergeable_xdp_get_buf() Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 03/15] virtio_net: optimize mergeable_xdp_get_buf() Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 04/15] virtio_net: introduce virtnet_xdp_handler() to seprate the logic of run xdp Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 05/15] virtio_net: separate the logic of freeing xdp shinfo Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 06/15] virtio_net: separate the logic of freeing the rest mergeable buf Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 07/15] virtio_net: virtnet_build_xdp_buff_mrg() auto release xdp shinfo Xuan Zhuo
2023-05-08  6:46   ` Jason Wang
2023-05-08  6:14 ` [PATCH net-next v5 08/15] virtio_net: introduce receive_mergeable_xdp() Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 09/15] virtio_net: merge: remove skip_xdp Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 10/15] virtio_net: introduce receive_small_xdp() Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 11/15] virtio_net: small: remove the delta Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 12/15] virtio_net: small: avoid code duplication in xdp scenarios Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 13/15] virtio_net: small: remove skip_xdp Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 14/15] virtio_net: introduce receive_small_build_xdp Xuan Zhuo
2023-05-08  6:14 ` [PATCH net-next v5 15/15] virtio_net: introduce virtnet_build_skb() Xuan Zhuo
2023-05-08  6:18 ` [PATCH net-next v5 00/15] virtio_net: refactor xdp codes Michael S. Tsirkin
2023-05-10  2:50 ` patchwork-bot+netdevbpf [this message]

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=168368702613.23144.13458642339700236476.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=hawk@kernel.org \
    --cc=jasowang@redhat.com \
    --cc=john.fastabend@gmail.com \
    --cc=kuba@kernel.org \
    --cc=mst@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=xuanzhuo@linux.alibaba.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 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).