linux-kselftest.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config
@ 2022-09-29  4:19 Zhengchao Shao
  2022-09-30  0:21 ` Victor Nogueira
  2022-10-01  1:50 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 5+ messages in thread
From: Zhengchao Shao @ 2022-09-29  4:19 UTC (permalink / raw)
  To: netdev, linux-kselftest, jhs, xiyou.wangcong, jiri, shuah, victor
  Cc: weiyongjun1, yuehaibing, shaozhengchao

Since three patchsets "add tc-testing test cases", "refactor duplicate
codes in the tc cls walk function", and "refactor duplicate codes in the
qdisc class walk function" are merged to net-next tree, the list of
supported features needs to be updated in config file.

Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
---
v2: modify typos
---
 tools/testing/selftests/tc-testing/config | 25 ++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/tools/testing/selftests/tc-testing/config b/tools/testing/selftests/tc-testing/config
index 2b2c2a835757..4638c63a339f 100644
--- a/tools/testing/selftests/tc-testing/config
+++ b/tools/testing/selftests/tc-testing/config
@@ -13,15 +13,28 @@ CONFIG_NET_SCHED=y
 # Queueing/Scheduling
 #
 CONFIG_NET_SCH_ATM=m
+CONFIG_NET_SCH_CAKE=m
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_CBS=m
 CONFIG_NET_SCH_CHOKE=m
 CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_DSMARK=m
 CONFIG_NET_SCH_ETF=m
 CONFIG_NET_SCH_FQ=m
+CONFIG_NET_SCH_FQ_CODEL=m
 CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_HFSC=m
 CONFIG_NET_SCH_HHF=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_PIE=m
 CONFIG_NET_SCH_PLUG=m
 CONFIG_NET_SCH_PRIO=m
-CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_QFQ=m
 CONFIG_NET_SCH_SFB=m
 CONFIG_NET_SCH_SFQ=m
 CONFIG_NET_SCH_SKBPRIO=m
@@ -37,6 +50,15 @@ CONFIG_NET_CLS_FW=m
 CONFIG_NET_CLS_U32=m
 CONFIG_CLS_U32_PERF=y
 CONFIG_CLS_U32_MARK=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_BPF=m
+CONFIG_NET_CLS_CGROUP=m
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_FLOWER=m
+CONFIG_NET_CLS_MATCHALL=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_TCINDEX=m
 CONFIG_NET_EMATCH=y
 CONFIG_NET_EMATCH_STACK=32
 CONFIG_NET_EMATCH_CMP=m
@@ -68,6 +90,7 @@ CONFIG_NET_ACT_IFE=m
 CONFIG_NET_ACT_TUNNEL_KEY=m
 CONFIG_NET_ACT_CT=m
 CONFIG_NET_ACT_MPLS=m
+CONFIG_NET_ACT_GATE=m
 CONFIG_NET_IFE_SKBMARK=m
 CONFIG_NET_IFE_SKBPRIO=m
 CONFIG_NET_IFE_SKBTCINDEX=m
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config
  2022-09-29  4:19 [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config Zhengchao Shao
@ 2022-09-30  0:21 ` Victor Nogueira
  2022-09-30 10:24   ` Jamal Hadi Salim
  2022-10-01  1:50 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 5+ messages in thread
From: Victor Nogueira @ 2022-09-30  0:21 UTC (permalink / raw)
  To: Zhengchao Shao
  Cc: netdev, linux-kselftest, jhs, xiyou.wangcong, jiri, shuah,
	weiyongjun1, yuehaibing

On Thu, Sep 29, 2022 at 1:11 AM Zhengchao Shao <shaozhengchao@huawei.com> wrote:
>
> Since three patchsets "add tc-testing test cases", "refactor duplicate
> codes in the tc cls walk function", and "refactor duplicate codes in the
> qdisc class walk function" are merged to net-next tree, the list of
> supported features needs to be updated in config file.
>
> Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>

Reviewed-by: Victor Nogueira <victor@mojatatu.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config
  2022-09-30  0:21 ` Victor Nogueira
@ 2022-09-30 10:24   ` Jamal Hadi Salim
  2022-09-30 13:12     ` shaozhengchao
  0 siblings, 1 reply; 5+ messages in thread
From: Jamal Hadi Salim @ 2022-09-30 10:24 UTC (permalink / raw)
  To: Victor Nogueira
  Cc: Zhengchao Shao, netdev, linux-kselftest, xiyou.wangcong, jiri,
	shuah, weiyongjun1, yuehaibing

Please double check your work by testing it before submitting so we
can save some
cycles in reviewing. Those typos means your last commit was not tested.

Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>

cheers,
jamal

On Thu, Sep 29, 2022 at 8:22 PM Victor Nogueira <victor@mojatatu.com> wrote:
>
> On Thu, Sep 29, 2022 at 1:11 AM Zhengchao Shao <shaozhengchao@huawei.com> wrote:
> >
> > Since three patchsets "add tc-testing test cases", "refactor duplicate
> > codes in the tc cls walk function", and "refactor duplicate codes in the
> > qdisc class walk function" are merged to net-next tree, the list of
> > supported features needs to be updated in config file.
> >
> > Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
>
> Reviewed-by: Victor Nogueira <victor@mojatatu.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config
  2022-09-30 10:24   ` Jamal Hadi Salim
@ 2022-09-30 13:12     ` shaozhengchao
  0 siblings, 0 replies; 5+ messages in thread
From: shaozhengchao @ 2022-09-30 13:12 UTC (permalink / raw)
  To: Jamal Hadi Salim, Victor Nogueira
  Cc: netdev, linux-kselftest, xiyou.wangcong, jiri, shuah,
	weiyongjun (A),
	yuehaibing

Hi Jamal:
	My apologise. I will be more careful before sending patch. 
Thanks to Victor and you for the review.

Zhengchao Shao

-----Original Message-----
From: Jamal Hadi Salim [mailto:jhs@mojatatu.com] 
Sent: Friday, September 30, 2022 6:25 PM
To: Victor Nogueira <victor@mojatatu.com>
Cc: shaozhengchao <shaozhengchao@huawei.com>; netdev@vger.kernel.org; linux-kselftest@vger.kernel.org; xiyou.wangcong@gmail.com; jiri@resnulli.us; shuah@kernel.org; weiyongjun (A) <weiyongjun1@huawei.com>; yuehaibing <yuehaibing@huawei.com>
Subject: Re: [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config

Please double check your work by testing it before submitting so we can save some cycles in reviewing. Those typos means your last commit was not tested.

Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>

cheers,
jamal

On Thu, Sep 29, 2022 at 8:22 PM Victor Nogueira <victor@mojatatu.com> wrote:
>
> On Thu, Sep 29, 2022 at 1:11 AM Zhengchao Shao <shaozhengchao@huawei.com> wrote:
> >
> > Since three patchsets "add tc-testing test cases", "refactor 
> > duplicate codes in the tc cls walk function", and "refactor 
> > duplicate codes in the qdisc class walk function" are merged to 
> > net-next tree, the list of supported features needs to be updated in config file.
> >
> > Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
>
> Reviewed-by: Victor Nogueira <victor@mojatatu.com>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config
  2022-09-29  4:19 [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config Zhengchao Shao
  2022-09-30  0:21 ` Victor Nogueira
@ 2022-10-01  1:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 5+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-10-01  1:50 UTC (permalink / raw)
  To: shaozhengchao
  Cc: netdev, linux-kselftest, jhs, xiyou.wangcong, jiri, shuah,
	victor, weiyongjun1, yuehaibing

Hello:

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

On Thu, 29 Sep 2022 12:19:09 +0800 you wrote:
> Since three patchsets "add tc-testing test cases", "refactor duplicate
> codes in the tc cls walk function", and "refactor duplicate codes in the
> qdisc class walk function" are merged to net-next tree, the list of
> supported features needs to be updated in config file.
> 
> Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
> 
> [...]

Here is the summary with links:
  - [net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config
    https://git.kernel.org/netdev/net-next/c/f77a9f3cd1e6

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



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-10-01  1:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-29  4:19 [PATCH net-next,v2] selftests/tc-testing: update qdisc/cls/action features in config Zhengchao Shao
2022-09-30  0:21 ` Victor Nogueira
2022-09-30 10:24   ` Jamal Hadi Salim
2022-09-30 13:12     ` shaozhengchao
2022-10-01  1:50 ` patchwork-bot+netdevbpf

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).