public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Zhengchao Shao <shaozhengchao@huawei.com>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	bpf@vger.kernel.org, davem@davemloft.net, edumazet@google.com,
	kuba@kernel.org, pabeni@redhat.com, jhs@mojatatu.com,
	xiyou.wangcong@gmail.com, jiri@resnulli.us, martin.lau@linux.dev,
	daniel@iogearbox.net, john.fastabend@gmail.com, ast@kernel.org,
	andrii@kernel.org, song@kernel.org, yhs@fb.com,
	kpsingh@kernel.org, sdf@google.com, haoluo@google.com,
	jolsa@kernel.org, weiyongjun1@huawei.com, yuehaibing@huawei.com
Subject: Re: [PATCH net-next,v3 00/22] refactor the walk and lookup hook functions in tc_action_ops
Date: Fri, 09 Sep 2022 07:40:22 +0000	[thread overview]
Message-ID: <166270922282.30497.2669983559309642268.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20220908041454.365070-1-shaozhengchao@huawei.com>

Hello:

This series was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Thu, 8 Sep 2022 12:14:32 +0800 you wrote:
> The implementation logic of the walk/lookup hook function in each action
> module is the same. Therefore, the two functions can be reconstructed.
> When registering tc_action_ops of each action module, the corresponding
> net_id is saved to tc_action_ops. In this way, the net_id of the
> corresponding module can be directly obtained in act_api without executing
> the specific walk and lookup hook functions. Then, generic functions can
> be added to replace the walk and lookup hook functions of each action
> module. Last, modify each action module in alphabetical order.
> 
> [...]

Here is the summary with links:
  - [net-next,v3,01/22] net: sched: act: move global static variable net_id to tc_action_ops
    https://git.kernel.org/netdev/net-next/c/acd0a7ab6334
  - [net-next,v3,02/22] net: sched: act_api: implement generic walker and search for tc action
    https://git.kernel.org/netdev/net-next/c/fae52d932338
  - [net-next,v3,03/22] net: sched: act_bpf: get rid of tcf_bpf_walker and tcf_bpf_search
    https://git.kernel.org/netdev/net-next/c/aa0a92f7458c
  - [net-next,v3,04/22] net: sched: act_connmark: get rid of tcf_connmark_walker and tcf_connmark_search
    https://git.kernel.org/netdev/net-next/c/c4d2497032ae
  - [net-next,v3,05/22] net: sched: act_csum: get rid of tcf_csum_walker and tcf_csum_search
    https://git.kernel.org/netdev/net-next/c/d2388df33b36
  - [net-next,v3,06/22] net: sched: act_ct: get rid of tcf_ct_walker and tcf_ct_search
    https://git.kernel.org/netdev/net-next/c/cb967ace0acc
  - [net-next,v3,07/22] net: sched: act_ctinfo: get rid of tcf_ctinfo_walker and tcf_ctinfo_search
    https://git.kernel.org/netdev/net-next/c/d51145dafd50
  - [net-next,v3,08/22] net: sched: act_gact: get rid of tcf_gact_walker and tcf_gact_search
    https://git.kernel.org/netdev/net-next/c/eeb3f43e05c0
  - [net-next,v3,09/22] net: sched: act_gate: get rid of tcf_gate_walker and tcf_gate_search
    https://git.kernel.org/netdev/net-next/c/ae3f9fc308d5
  - [net-next,v3,10/22] net: sched: act_ife: get rid of tcf_ife_walker and tcf_ife_search
    https://git.kernel.org/netdev/net-next/c/ad0cd0a85cd7
  - [net-next,v3,11/22] net: sched: act_ipt: get rid of tcf_ipt_walker/tcf_xt_walker and tcf_ipt_search/tcf_xt_search
    https://git.kernel.org/netdev/net-next/c/0a4c06f20d76
  - [net-next,v3,12/22] net: sched: act_mirred: get rid of tcf_mirred_walker and tcf_mirred_search
    https://git.kernel.org/netdev/net-next/c/d58efc6ecce8
  - [net-next,v3,13/22] net: sched: act_mpls: get rid of tcf_mpls_walker and tcf_mpls_search
    https://git.kernel.org/netdev/net-next/c/7fadae53aa86
  - [net-next,v3,14/22] net: sched: act_nat: get rid of tcf_nat_walker and tcf_nat_search
    https://git.kernel.org/netdev/net-next/c/586fab138659
  - [net-next,v3,15/22] net: sched: act_pedit: get rid of tcf_pedit_walker and tcf_pedit_search
    https://git.kernel.org/netdev/net-next/c/b915d86981fe
  - [net-next,v3,16/22] net: sched: act_police: get rid of tcf_police_walker and tcf_police_search
    https://git.kernel.org/netdev/net-next/c/0abf7f8f82bb
  - [net-next,v3,17/22] net: sched: act_sample: get rid of tcf_sample_walker and tcf_sample_search
    https://git.kernel.org/netdev/net-next/c/400d66332cd4
  - [net-next,v3,18/22] net: sched: act_simple: get rid of tcf_simp_walker and tcf_simp_search
    https://git.kernel.org/netdev/net-next/c/5d6e9cb5c916
  - [net-next,v3,19/22] net: sched: act_skbedit: get rid of tcf_skbedit_walker and tcf_skbedit_search
    https://git.kernel.org/netdev/net-next/c/038725f9eed6
  - [net-next,v3,20/22] net: sched: act_skbmod: get rid of tcf_skbmod_walker and tcf_skbmod_search
    https://git.kernel.org/netdev/net-next/c/8a35c5df28aa
  - [net-next,v3,21/22] net: sched: act_tunnel_key: get rid of tunnel_key_walker and tunnel_key_search
    https://git.kernel.org/netdev/net-next/c/f6ffa368f061
  - [net-next,v3,22/22] net: sched: act_vlan: get rid of tcf_vlan_walker and tcf_vlan_search
    https://git.kernel.org/netdev/net-next/c/6d13a65d2a67

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



      parent reply	other threads:[~2022-09-09  7:51 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-08  4:14 [PATCH net-next,v3 00/22] refactor the walk and lookup hook functions in tc_action_ops Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 01/22] net: sched: act: move global static variable net_id to tc_action_ops Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 02/22] net: sched: act_api: implement generic walker and search for tc action Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 03/22] net: sched: act_bpf: get rid of tcf_bpf_walker and tcf_bpf_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 04/22] net: sched: act_connmark: get rid of tcf_connmark_walker and tcf_connmark_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 05/22] net: sched: act_csum: get rid of tcf_csum_walker and tcf_csum_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 06/22] net: sched: act_ct: get rid of tcf_ct_walker and tcf_ct_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 07/22] net: sched: act_ctinfo: get rid of tcf_ctinfo_walker and tcf_ctinfo_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 08/22] net: sched: act_gact: get rid of tcf_gact_walker and tcf_gact_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 09/22] net: sched: act_gate: get rid of tcf_gate_walker and tcf_gate_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 10/22] net: sched: act_ife: get rid of tcf_ife_walker and tcf_ife_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 11/22] net: sched: act_ipt: get rid of tcf_ipt_walker/tcf_xt_walker and tcf_ipt_search/tcf_xt_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 12/22] net: sched: act_mirred: get rid of tcf_mirred_walker and tcf_mirred_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 13/22] net: sched: act_mpls: get rid of tcf_mpls_walker and tcf_mpls_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 14/22] net: sched: act_nat: get rid of tcf_nat_walker and tcf_nat_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 15/22] net: sched: act_pedit: get rid of tcf_pedit_walker and tcf_pedit_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 16/22] net: sched: act_police: get rid of tcf_police_walker and tcf_police_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 17/22] net: sched: act_sample: get rid of tcf_sample_walker and tcf_sample_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 18/22] net: sched: act_simple: get rid of tcf_simp_walker and tcf_simp_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 19/22] net: sched: act_skbedit: get rid of tcf_skbedit_walker and tcf_skbedit_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 20/22] net: sched: act_skbmod: get rid of tcf_skbmod_walker and tcf_skbmod_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 21/22] net: sched: act_tunnel_key: get rid of tunnel_key_walker and tunnel_key_search Zhengchao Shao
2022-09-08  4:14 ` [PATCH net-next,v3 22/22] net: sched: act_vlan: get rid of tcf_vlan_walker and tcf_vlan_search Zhengchao Shao
2022-09-09  7:40 ` 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=166270922282.30497.2669983559309642268.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=haoluo@google.com \
    --cc=jhs@mojatatu.com \
    --cc=jiri@resnulli.us \
    --cc=john.fastabend@gmail.com \
    --cc=jolsa@kernel.org \
    --cc=kpsingh@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.lau@linux.dev \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=sdf@google.com \
    --cc=shaozhengchao@huawei.com \
    --cc=song@kernel.org \
    --cc=weiyongjun1@huawei.com \
    --cc=xiyou.wangcong@gmail.com \
    --cc=yhs@fb.com \
    --cc=yuehaibing@huawei.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