netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/4] selftests: tc-testing: more tdc updates
@ 2023-11-29 22:24 Pedro Tammela
  2023-11-29 22:24 ` [PATCH net-next 1/4] selftests: tc-testing: remove spurious nsPlugin usage Pedro Tammela
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Pedro Tammela @ 2023-11-29 22:24 UTC (permalink / raw)
  To: netdev
  Cc: davem, edumazet, kuba, pabeni, jhs, xiyou.wangcong, jiri,
	linux-kselftest, Pedro Tammela

Follow-up on a feedback from Jakub and random cleanups from related
net/sched patches

Pedro Tammela (4):
  selftests: tc-testing: remove spurious nsPlugin usage
  selftests: tc-testing: remove spurious './' from Makefile
  selftests: tc-testing: rename concurrency.json to flower.json
  selftests: tc-testing: remove filters/tests.json

 tools/testing/selftests/tc-testing/Makefile   |   2 +-
 .../filters/{concurrency.json => flower.json} |  98 +++++++++++++
 .../tc-testing/tc-tests/filters/matchall.json |  23 ++++
 .../tc-testing/tc-tests/filters/tests.json    | 129 ------------------
 4 files changed, 122 insertions(+), 130 deletions(-)
 rename tools/testing/selftests/tc-testing/tc-tests/filters/{concurrency.json => flower.json} (65%)
 delete mode 100644 tools/testing/selftests/tc-testing/tc-tests/filters/tests.json

-- 
2.40.1


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

* [PATCH net-next 1/4] selftests: tc-testing: remove spurious nsPlugin usage
  2023-11-29 22:24 [PATCH net-next 0/4] selftests: tc-testing: more tdc updates Pedro Tammela
@ 2023-11-29 22:24 ` Pedro Tammela
  2023-11-29 22:24 ` [PATCH net-next 2/4] selftests: tc-testing: remove spurious './' from Makefile Pedro Tammela
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Pedro Tammela @ 2023-11-29 22:24 UTC (permalink / raw)
  To: netdev
  Cc: davem, edumazet, kuba, pabeni, jhs, xiyou.wangcong, jiri,
	linux-kselftest, Pedro Tammela

Tests using DEV2 should not be run in a dedicated net namespace,
and in parallel, as this device cannot be shared.

Signed-off-by: Pedro Tammela <pctammela@mojatatu.com>
---
 .../selftests/tc-testing/tc-tests/filters/tests.json        | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/tools/testing/selftests/tc-testing/tc-tests/filters/tests.json b/tools/testing/selftests/tc-testing/tc-tests/filters/tests.json
index 361235ad574b..4598f1d330fe 100644
--- a/tools/testing/selftests/tc-testing/tc-tests/filters/tests.json
+++ b/tools/testing/selftests/tc-testing/tc-tests/filters/tests.json
@@ -48,9 +48,6 @@
             "filter",
             "flower"
         ],
-        "plugins": {
-                "requires": "nsPlugin"
-        },
         "setup": [
             "$TC qdisc add dev $DEV2 ingress",
             "./tdc_batch.py $DEV2 $BATCH_FILE --share_action -n 1000000"
@@ -72,9 +69,6 @@
             "filter",
             "flower"
         ],
-        "plugins": {
-                "requires": "nsPlugin"
-        },
         "setup": [
             "$TC qdisc add dev $DEV2 ingress",
             "$TC filter add dev $DEV2 protocol ip prio 1 ingress flower dst_mac e4:11:22:11:4a:51 src_mac e4:11:22:11:4a:50 ip_proto tcp src_ip 1.1.1.1 dst_ip 2.2.2.2 action drop"
-- 
2.40.1


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

* [PATCH net-next 2/4] selftests: tc-testing: remove spurious './' from Makefile
  2023-11-29 22:24 [PATCH net-next 0/4] selftests: tc-testing: more tdc updates Pedro Tammela
  2023-11-29 22:24 ` [PATCH net-next 1/4] selftests: tc-testing: remove spurious nsPlugin usage Pedro Tammela
@ 2023-11-29 22:24 ` Pedro Tammela
  2023-12-01  7:22   ` Jakub Kicinski
  2023-11-29 22:24 ` [PATCH net-next 3/4] selftests: tc-testing: rename concurrency.json to flower.json Pedro Tammela
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 9+ messages in thread
From: Pedro Tammela @ 2023-11-29 22:24 UTC (permalink / raw)
  To: netdev
  Cc: davem, edumazet, kuba, pabeni, jhs, xiyou.wangcong, jiri,
	linux-kselftest, Pedro Tammela

Patchwork CI didn't like the extra './', so remove it.

Signed-off-by: Pedro Tammela <pctammela@mojatatu.com>
---
 tools/testing/selftests/tc-testing/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/tc-testing/Makefile b/tools/testing/selftests/tc-testing/Makefile
index e8b3dde4fa16..9153e3428a77 100644
--- a/tools/testing/selftests/tc-testing/Makefile
+++ b/tools/testing/selftests/tc-testing/Makefile
@@ -1,6 +1,6 @@
 # SPDX-License-Identifier: GPL-2.0
 
-TEST_PROGS += ./tdc.sh
+TEST_PROGS += tdc.sh
 TEST_FILES := action-ebpf tdc*.py Tdc*.py plugins plugin-lib tc-tests scripts
 
 include ../lib.mk
-- 
2.40.1


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

* [PATCH net-next 3/4] selftests: tc-testing: rename concurrency.json to flower.json
  2023-11-29 22:24 [PATCH net-next 0/4] selftests: tc-testing: more tdc updates Pedro Tammela
  2023-11-29 22:24 ` [PATCH net-next 1/4] selftests: tc-testing: remove spurious nsPlugin usage Pedro Tammela
  2023-11-29 22:24 ` [PATCH net-next 2/4] selftests: tc-testing: remove spurious './' from Makefile Pedro Tammela
@ 2023-11-29 22:24 ` Pedro Tammela
  2023-11-29 22:24 ` [PATCH net-next 4/4] selftests: tc-testing: remove filters/tests.json Pedro Tammela
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Pedro Tammela @ 2023-11-29 22:24 UTC (permalink / raw)
  To: netdev
  Cc: davem, edumazet, kuba, pabeni, jhs, xiyou.wangcong, jiri,
	linux-kselftest, Pedro Tammela

All tests in this file pertain to flower, so name it appropriately

Signed-off-by: Pedro Tammela <pctammela@mojatatu.com>
---
 .../tc-testing/tc-tests/filters/{concurrency.json => flower.json} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename tools/testing/selftests/tc-testing/tc-tests/filters/{concurrency.json => flower.json} (100%)

diff --git a/tools/testing/selftests/tc-testing/tc-tests/filters/concurrency.json b/tools/testing/selftests/tc-testing/tc-tests/filters/flower.json
similarity index 100%
rename from tools/testing/selftests/tc-testing/tc-tests/filters/concurrency.json
rename to tools/testing/selftests/tc-testing/tc-tests/filters/flower.json
-- 
2.40.1


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

* [PATCH net-next 4/4] selftests: tc-testing: remove filters/tests.json
  2023-11-29 22:24 [PATCH net-next 0/4] selftests: tc-testing: more tdc updates Pedro Tammela
                   ` (2 preceding siblings ...)
  2023-11-29 22:24 ` [PATCH net-next 3/4] selftests: tc-testing: rename concurrency.json to flower.json Pedro Tammela
@ 2023-11-29 22:24 ` Pedro Tammela
  2023-11-29 23:10 ` [PATCH net-next 0/4] selftests: tc-testing: more tdc updates patchwork-bot+netdevbpf
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Pedro Tammela @ 2023-11-29 22:24 UTC (permalink / raw)
  To: netdev
  Cc: davem, edumazet, kuba, pabeni, jhs, xiyou.wangcong, jiri,
	linux-kselftest, Pedro Tammela

Remove this generic file and move the tests to their appropriate files

Signed-off-by: Pedro Tammela <pctammela@mojatatu.com>
---
 .../tc-testing/tc-tests/filters/flower.json   |  98 ++++++++++++++
 .../tc-testing/tc-tests/filters/matchall.json |  23 ++++
 .../tc-testing/tc-tests/filters/tests.json    | 123 ------------------
 3 files changed, 121 insertions(+), 123 deletions(-)
 delete mode 100644 tools/testing/selftests/tc-testing/tc-tests/filters/tests.json

diff --git a/tools/testing/selftests/tc-testing/tc-tests/filters/flower.json b/tools/testing/selftests/tc-testing/tc-tests/filters/flower.json
index c2a433a4737e..6b08c0642069 100644
--- a/tools/testing/selftests/tc-testing/tc-tests/filters/flower.json
+++ b/tools/testing/selftests/tc-testing/tc-tests/filters/flower.json
@@ -173,5 +173,103 @@
             "$TC qdisc del dev $DEV2 ingress",
             "/bin/rm -rf $BATCH_DIR"
         ]
+    },
+    {
+        "id": "2ff3",
+        "name": "Add flower with max handle and then dump it",
+        "category": [
+            "filter",
+            "flower"
+        ],
+        "setup": [
+            "$TC qdisc add dev $DEV2 ingress"
+        ],
+        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress handle 0xffffffff flower action ok",
+        "expExitCode": "0",
+        "verifyCmd": "$TC filter show dev $DEV2 ingress",
+        "matchPattern": "filter protocol ip pref 1 flower.*handle 0xffffffff",
+        "matchCount": "1",
+        "teardown": [
+            "$TC qdisc del dev $DEV2 ingress"
+        ]
+    },
+    {
+        "id": "d052",
+        "name": "Add 1M filters with the same action",
+        "category": [
+            "filter",
+            "flower"
+        ],
+        "setup": [
+            "$TC qdisc add dev $DEV2 ingress",
+            "./tdc_batch.py $DEV2 $BATCH_FILE --share_action -n 1000000"
+        ],
+        "cmdUnderTest": "$TC -b $BATCH_FILE",
+        "expExitCode": "0",
+        "verifyCmd": "$TC actions list action gact",
+        "matchPattern": "action order 0: gact action drop.*index 1 ref 1000000 bind 1000000",
+        "matchCount": "1",
+        "teardown": [
+            "$TC qdisc del dev $DEV2 ingress",
+            "/bin/rm $BATCH_FILE"
+        ]
+    },
+    {
+        "id": "4cbd",
+        "name": "Try to add filter with duplicate key",
+        "category": [
+            "filter",
+            "flower"
+        ],
+        "setup": [
+            "$TC qdisc add dev $DEV2 ingress",
+            "$TC filter add dev $DEV2 protocol ip prio 1 ingress flower dst_mac e4:11:22:11:4a:51 src_mac e4:11:22:11:4a:50 ip_proto tcp src_ip 1.1.1.1 dst_ip 2.2.2.2 action drop"
+        ],
+        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip prio 1 ingress flower dst_mac e4:11:22:11:4a:51 src_mac e4:11:22:11:4a:50 ip_proto tcp src_ip 1.1.1.1 dst_ip 2.2.2.2 action drop",
+        "expExitCode": "2",
+        "verifyCmd": "$TC -s filter show dev $DEV2 ingress",
+        "matchPattern": "filter protocol ip pref 1 flower chain 0 handle",
+        "matchCount": "1",
+        "teardown": [
+            "$TC qdisc del dev $DEV2 ingress"
+        ]
+    },
+    {
+        "id": "7c65",
+        "name": "Add flower filter and then terse dump it",
+        "category": [
+            "filter",
+            "flower"
+        ],
+        "setup": [
+            "$TC qdisc add dev $DEV2 ingress"
+        ],
+        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress flower dst_mac e4:11:22:11:4a:51 action drop",
+        "expExitCode": "0",
+        "verifyCmd": "$TC -br filter show dev $DEV2 ingress",
+        "matchPattern": "filter protocol ip pref 1 flower.*handle",
+        "matchCount": "1",
+        "teardown": [
+            "$TC qdisc del dev $DEV2 ingress"
+        ]
+    },
+    {
+        "id": "d45e",
+        "name": "Add flower filter and verify that terse dump doesn't output filter key",
+        "category": [
+            "filter",
+            "flower"
+        ],
+        "setup": [
+            "$TC qdisc add dev $DEV2 ingress"
+        ],
+        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress flower dst_mac e4:11:22:11:4a:51 action drop",
+        "expExitCode": "0",
+        "verifyCmd": "$TC -br filter show dev $DEV2 ingress",
+        "matchPattern": "  dst_mac e4:11:22:11:4a:51",
+        "matchCount": "0",
+        "teardown": [
+            "$TC qdisc del dev $DEV2 ingress"
+        ]
     }
 ]
diff --git a/tools/testing/selftests/tc-testing/tc-tests/filters/matchall.json b/tools/testing/selftests/tc-testing/tc-tests/filters/matchall.json
index afa1b9b0c856..f8d28c415bc3 100644
--- a/tools/testing/selftests/tc-testing/tc-tests/filters/matchall.json
+++ b/tools/testing/selftests/tc-testing/tc-tests/filters/matchall.json
@@ -480,5 +480,28 @@
             "$TC qdisc del dev $DUMMY ingress",
             "$TC actions del action police index 199"
         ]
+    },
+    {
+        "id": "2638",
+        "name": "Add matchall and try to get it",
+        "category": [
+            "filter",
+            "matchall"
+        ],
+        "plugins": {
+                "requires": "nsPlugin"
+        },
+        "setup": [
+            "$TC qdisc add dev $DEV1 clsact",
+            "$TC filter add dev $DEV1 protocol all pref 1 ingress handle 0x1234 matchall action ok"
+        ],
+        "cmdUnderTest": "$TC filter get dev $DEV1 protocol all pref 1 ingress handle 0x1234 matchall",
+        "expExitCode": "0",
+        "verifyCmd": "$TC filter show dev $DEV1 ingress",
+        "matchPattern": "filter protocol all pref 1 matchall chain 0 handle 0x1234",
+        "matchCount": "1",
+        "teardown": [
+            "$TC qdisc del dev $DEV1 clsact"
+        ]
     }
 ]
diff --git a/tools/testing/selftests/tc-testing/tc-tests/filters/tests.json b/tools/testing/selftests/tc-testing/tc-tests/filters/tests.json
deleted file mode 100644
index 4598f1d330fe..000000000000
--- a/tools/testing/selftests/tc-testing/tc-tests/filters/tests.json
+++ /dev/null
@@ -1,123 +0,0 @@
-[
-    {
-        "id": "2638",
-        "name": "Add matchall and try to get it",
-        "category": [
-            "filter",
-            "matchall"
-        ],
-        "plugins": {
-                "requires": "nsPlugin"
-        },
-        "setup": [
-            "$TC qdisc add dev $DEV1 clsact",
-            "$TC filter add dev $DEV1 protocol all pref 1 ingress handle 0x1234 matchall action ok"
-        ],
-        "cmdUnderTest": "$TC filter get dev $DEV1 protocol all pref 1 ingress handle 0x1234 matchall",
-        "expExitCode": "0",
-        "verifyCmd": "$TC filter show dev $DEV1 ingress",
-        "matchPattern": "filter protocol all pref 1 matchall chain 0 handle 0x1234",
-        "matchCount": "1",
-        "teardown": [
-            "$TC qdisc del dev $DEV1 clsact"
-        ]
-    },
-    {
-        "id": "2ff3",
-        "name": "Add flower with max handle and then dump it",
-        "category": [
-            "filter",
-            "flower"
-        ],
-        "setup": [
-            "$TC qdisc add dev $DEV2 ingress"
-        ],
-        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress handle 0xffffffff flower action ok",
-        "expExitCode": "0",
-        "verifyCmd": "$TC filter show dev $DEV2 ingress",
-        "matchPattern": "filter protocol ip pref 1 flower.*handle 0xffffffff",
-        "matchCount": "1",
-        "teardown": [
-            "$TC qdisc del dev $DEV2 ingress"
-        ]
-    },
-    {
-        "id": "d052",
-        "name": "Add 1M filters with the same action",
-        "category": [
-            "filter",
-            "flower"
-        ],
-        "setup": [
-            "$TC qdisc add dev $DEV2 ingress",
-            "./tdc_batch.py $DEV2 $BATCH_FILE --share_action -n 1000000"
-        ],
-        "cmdUnderTest": "$TC -b $BATCH_FILE",
-        "expExitCode": "0",
-        "verifyCmd": "$TC actions list action gact",
-        "matchPattern": "action order 0: gact action drop.*index 1 ref 1000000 bind 1000000",
-        "matchCount": "1",
-        "teardown": [
-            "$TC qdisc del dev $DEV2 ingress",
-            "/bin/rm $BATCH_FILE"
-        ]
-    },
-    {
-        "id": "4cbd",
-        "name": "Try to add filter with duplicate key",
-        "category": [
-            "filter",
-            "flower"
-        ],
-        "setup": [
-            "$TC qdisc add dev $DEV2 ingress",
-            "$TC filter add dev $DEV2 protocol ip prio 1 ingress flower dst_mac e4:11:22:11:4a:51 src_mac e4:11:22:11:4a:50 ip_proto tcp src_ip 1.1.1.1 dst_ip 2.2.2.2 action drop"
-        ],
-        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip prio 1 ingress flower dst_mac e4:11:22:11:4a:51 src_mac e4:11:22:11:4a:50 ip_proto tcp src_ip 1.1.1.1 dst_ip 2.2.2.2 action drop",
-        "expExitCode": "2",
-        "verifyCmd": "$TC -s filter show dev $DEV2 ingress",
-        "matchPattern": "filter protocol ip pref 1 flower chain 0 handle",
-        "matchCount": "1",
-        "teardown": [
-            "$TC qdisc del dev $DEV2 ingress"
-        ]
-    },
-    {
-        "id": "7c65",
-        "name": "Add flower filter and then terse dump it",
-        "category": [
-            "filter",
-            "flower"
-        ],
-        "setup": [
-            "$TC qdisc add dev $DEV2 ingress"
-        ],
-        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress flower dst_mac e4:11:22:11:4a:51 action drop",
-        "expExitCode": "0",
-        "verifyCmd": "$TC -br filter show dev $DEV2 ingress",
-        "matchPattern": "filter protocol ip pref 1 flower.*handle",
-        "matchCount": "1",
-        "teardown": [
-            "$TC qdisc del dev $DEV2 ingress"
-        ]
-    },
-    {
-        "id": "d45e",
-        "name": "Add flower filter and verify that terse dump doesn't output filter key",
-        "category": [
-            "filter",
-            "flower"
-        ],
-        "setup": [
-            "$TC qdisc add dev $DEV2 ingress"
-        ],
-        "cmdUnderTest": "$TC filter add dev $DEV2 protocol ip pref 1 ingress flower dst_mac e4:11:22:11:4a:51 action drop",
-        "expExitCode": "0",
-        "verifyCmd": "$TC -br filter show dev $DEV2 ingress",
-        "matchPattern": "  dst_mac e4:11:22:11:4a:51",
-        "matchCount": "0",
-        "teardown": [
-            "$TC qdisc del dev $DEV2 ingress"
-        ]
-    }
-]
-- 
2.40.1


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

* Re: [PATCH net-next 0/4] selftests: tc-testing: more tdc updates
  2023-11-29 22:24 [PATCH net-next 0/4] selftests: tc-testing: more tdc updates Pedro Tammela
                   ` (3 preceding siblings ...)
  2023-11-29 22:24 ` [PATCH net-next 4/4] selftests: tc-testing: remove filters/tests.json Pedro Tammela
@ 2023-11-29 23:10 ` patchwork-bot+netdevbpf
  2023-11-29 23:47 ` Jamal Hadi Salim
  2023-12-01  7:30 ` patchwork-bot+netdevbpf
  6 siblings, 0 replies; 9+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-11-29 23:10 UTC (permalink / raw)
  To: Pedro Tammela
  Cc: netdev, davem, edumazet, kuba, pabeni, jhs, xiyou.wangcong, jiri,
	linux-kselftest

Hello:

This series was applied to bpf/bpf-next.git (master)
by Alexei Starovoitov <ast@kernel.org>:

On Wed, 29 Nov 2023 19:24:20 -0300 you wrote:
> Follow-up on a feedback from Jakub and random cleanups from related
> net/sched patches
> 
> Pedro Tammela (4):
>   selftests: tc-testing: remove spurious nsPlugin usage
>   selftests: tc-testing: remove spurious './' from Makefile
>   selftests: tc-testing: rename concurrency.json to flower.json
>   selftests: tc-testing: remove filters/tests.json
> 
> [...]

Here is the summary with links:
  - [net-next,1/4] selftests: tc-testing: remove spurious nsPlugin usage
    (no matching commit)
  - [net-next,2/4] selftests: tc-testing: remove spurious './' from Makefile
    (no matching commit)
  - [net-next,3/4] selftests: tc-testing: rename concurrency.json to flower.json
    https://git.kernel.org/bpf/bpf-next/c/b5145153a7f3
  - [net-next,4/4] selftests: tc-testing: remove filters/tests.json
    (no matching commit)

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] 9+ messages in thread

* Re: [PATCH net-next 0/4] selftests: tc-testing: more tdc updates
  2023-11-29 22:24 [PATCH net-next 0/4] selftests: tc-testing: more tdc updates Pedro Tammela
                   ` (4 preceding siblings ...)
  2023-11-29 23:10 ` [PATCH net-next 0/4] selftests: tc-testing: more tdc updates patchwork-bot+netdevbpf
@ 2023-11-29 23:47 ` Jamal Hadi Salim
  2023-12-01  7:30 ` patchwork-bot+netdevbpf
  6 siblings, 0 replies; 9+ messages in thread
From: Jamal Hadi Salim @ 2023-11-29 23:47 UTC (permalink / raw)
  To: Pedro Tammela
  Cc: netdev, davem, edumazet, kuba, pabeni, xiyou.wangcong, jiri,
	linux-kselftest

On Wed, Nov 29, 2023 at 5:24 PM Pedro Tammela <pctammela@mojatatu.com> wrote:
>
> Follow-up on a feedback from Jakub and random cleanups from related
> net/sched patches
>
> Pedro Tammela (4):
>   selftests: tc-testing: remove spurious nsPlugin usage
>   selftests: tc-testing: remove spurious './' from Makefile
>   selftests: tc-testing: rename concurrency.json to flower.json
>   selftests: tc-testing: remove filters/tests.json
>
>  tools/testing/selftests/tc-testing/Makefile   |   2 +-
>  .../filters/{concurrency.json => flower.json} |  98 +++++++++++++
>  .../tc-testing/tc-tests/filters/matchall.json |  23 ++++
>  .../tc-testing/tc-tests/filters/tests.json    | 129 ------------------
>  4 files changed, 122 insertions(+), 130 deletions(-)
>  rename tools/testing/selftests/tc-testing/tc-tests/filters/{concurrency.json => flower.json} (65%)
>  delete mode 100644 tools/testing/selftests/tc-testing/tc-tests/filters/tests.json
>

For the patchset:

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

cheers,
jamal
> --
> 2.40.1
>

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

* Re: [PATCH net-next 2/4] selftests: tc-testing: remove spurious './' from Makefile
  2023-11-29 22:24 ` [PATCH net-next 2/4] selftests: tc-testing: remove spurious './' from Makefile Pedro Tammela
@ 2023-12-01  7:22   ` Jakub Kicinski
  0 siblings, 0 replies; 9+ messages in thread
From: Jakub Kicinski @ 2023-12-01  7:22 UTC (permalink / raw)
  To: Pedro Tammela
  Cc: netdev, davem, edumazet, pabeni, jhs, xiyou.wangcong, jiri,
	linux-kselftest

On Wed, 29 Nov 2023 19:24:22 -0300 Pedro Tammela wrote:
> Patchwork CI didn't like the extra './', so remove it.

Thanks!

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

* Re: [PATCH net-next 0/4] selftests: tc-testing: more tdc updates
  2023-11-29 22:24 [PATCH net-next 0/4] selftests: tc-testing: more tdc updates Pedro Tammela
                   ` (5 preceding siblings ...)
  2023-11-29 23:47 ` Jamal Hadi Salim
@ 2023-12-01  7:30 ` patchwork-bot+netdevbpf
  6 siblings, 0 replies; 9+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-12-01  7:30 UTC (permalink / raw)
  To: Pedro Tammela
  Cc: netdev, davem, edumazet, kuba, pabeni, jhs, xiyou.wangcong, jiri,
	linux-kselftest

Hello:

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

On Wed, 29 Nov 2023 19:24:20 -0300 you wrote:
> Follow-up on a feedback from Jakub and random cleanups from related
> net/sched patches
> 
> Pedro Tammela (4):
>   selftests: tc-testing: remove spurious nsPlugin usage
>   selftests: tc-testing: remove spurious './' from Makefile
>   selftests: tc-testing: rename concurrency.json to flower.json
>   selftests: tc-testing: remove filters/tests.json
> 
> [...]

Here is the summary with links:
  - [net-next,1/4] selftests: tc-testing: remove spurious nsPlugin usage
    https://git.kernel.org/netdev/net-next/c/f7580f00cc6e
  - [net-next,2/4] selftests: tc-testing: remove spurious './' from Makefile
    https://git.kernel.org/netdev/net-next/c/74f7e7eeb1d2
  - [net-next,3/4] selftests: tc-testing: rename concurrency.json to flower.json
    https://git.kernel.org/netdev/net-next/c/7de8b2efafeb
  - [net-next,4/4] selftests: tc-testing: remove filters/tests.json
    https://git.kernel.org/netdev/net-next/c/0fbb5a54f941

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] 9+ messages in thread

end of thread, other threads:[~2023-12-01  7:30 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-29 22:24 [PATCH net-next 0/4] selftests: tc-testing: more tdc updates Pedro Tammela
2023-11-29 22:24 ` [PATCH net-next 1/4] selftests: tc-testing: remove spurious nsPlugin usage Pedro Tammela
2023-11-29 22:24 ` [PATCH net-next 2/4] selftests: tc-testing: remove spurious './' from Makefile Pedro Tammela
2023-12-01  7:22   ` Jakub Kicinski
2023-11-29 22:24 ` [PATCH net-next 3/4] selftests: tc-testing: rename concurrency.json to flower.json Pedro Tammela
2023-11-29 22:24 ` [PATCH net-next 4/4] selftests: tc-testing: remove filters/tests.json Pedro Tammela
2023-11-29 23:10 ` [PATCH net-next 0/4] selftests: tc-testing: more tdc updates patchwork-bot+netdevbpf
2023-11-29 23:47 ` Jamal Hadi Salim
2023-12-01  7:30 ` 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).