Message ID | 72335bd036509a533d1cf00554b77b674fad846f.1680021219.git.dcaratti@redhat.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net/sched: act_tunnel_key: add support for TUNNEL_DONT_FRAGMENT | expand |
On Tue, Mar 28, 2023 at 12:45 PM Davide Caratti <dcaratti@redhat.com> wrote: > > # ./tdc.py -e 6bda -l > 6bda: (actions, tunnel_key) Add tunnel_key action with nofrag option > > Signed-off-by: Davide Caratti <dcaratti@redhat.com> Acked-by: Jamal Hadi Salim <jhs@mojatatu.com> cheers, jamal > --- > .../tc-tests/actions/tunnel_key.json | 25 +++++++++++++++++++ > 1 file changed, 25 insertions(+) > > diff --git a/tools/testing/selftests/tc-testing/tc-tests/actions/tunnel_key.json b/tools/testing/selftests/tc-testing/tc-tests/actions/tunnel_key.json > index b40ee602918a..b5b47fbf6c00 100644 > --- a/tools/testing/selftests/tc-testing/tc-tests/actions/tunnel_key.json > +++ b/tools/testing/selftests/tc-testing/tc-tests/actions/tunnel_key.json > @@ -983,5 +983,30 @@ > "teardown": [ > "$TC actions flush action tunnel_key" > ] > + }, > + { > + "id": "6bda", > + "name": "Add tunnel_key action with nofrag option", > + "category": [ > + "actions", > + "tunnel_key" > + ], > + "dependsOn": "$TC actions add action tunnel_key help 2>&1 | grep -q nofrag", > + "setup": [ > + [ > + "$TC action flush action tunnel_key", > + 0, > + 1, > + 255 > + ] > + ], > + "cmdUnderTest": "$TC actions add action tunnel_key set src_ip 10.10.10.1 dst_ip 10.10.10.2 id 1111 nofrag index 222", > + "expExitCode": "0", > + "verifyCmd": "$TC actions get action tunnel_key index 222", > + "matchPattern": "action order [0-9]+: tunnel_key.*src_ip 10.10.10.1.*dst_ip 10.10.10.2.*key_id 1111.*csum.*nofrag pipe.*index 222", > + "matchCount": "1", > + "teardown": [ > + "$TC actions flush action tunnel_key" > + ] > } > ] > -- > 2.39.2 >
diff --git a/tools/testing/selftests/tc-testing/tc-tests/actions/tunnel_key.json b/tools/testing/selftests/tc-testing/tc-tests/actions/tunnel_key.json index b40ee602918a..b5b47fbf6c00 100644 --- a/tools/testing/selftests/tc-testing/tc-tests/actions/tunnel_key.json +++ b/tools/testing/selftests/tc-testing/tc-tests/actions/tunnel_key.json @@ -983,5 +983,30 @@ "teardown": [ "$TC actions flush action tunnel_key" ] + }, + { + "id": "6bda", + "name": "Add tunnel_key action with nofrag option", + "category": [ + "actions", + "tunnel_key" + ], + "dependsOn": "$TC actions add action tunnel_key help 2>&1 | grep -q nofrag", + "setup": [ + [ + "$TC action flush action tunnel_key", + 0, + 1, + 255 + ] + ], + "cmdUnderTest": "$TC actions add action tunnel_key set src_ip 10.10.10.1 dst_ip 10.10.10.2 id 1111 nofrag index 222", + "expExitCode": "0", + "verifyCmd": "$TC actions get action tunnel_key index 222", + "matchPattern": "action order [0-9]+: tunnel_key.*src_ip 10.10.10.1.*dst_ip 10.10.10.2.*key_id 1111.*csum.*nofrag pipe.*index 222", + "matchCount": "1", + "teardown": [ + "$TC actions flush action tunnel_key" + ] } ]
# ./tdc.py -e 6bda -l 6bda: (actions, tunnel_key) Add tunnel_key action with nofrag option Signed-off-by: Davide Caratti <dcaratti@redhat.com> --- .../tc-tests/actions/tunnel_key.json | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+)