[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220503124332.857499-4-vladimir.oltean@nxp.com>
Date: Tue, 3 May 2022 15:43:32 +0300
From: Vladimir Oltean <vladimir.oltean@....com>
To: netdev@...r.kernel.org
Cc: Jakub Kicinski <kuba@...nel.org>,
"David S. Miller" <davem@...emloft.net>,
Paolo Abeni <pabeni@...hat.com>,
Eric Dumazet <edumazet@...gle.com>,
Florian Fainelli <f.fainelli@...il.com>,
Vivien Didelot <vivien.didelot@...il.com>,
Andrew Lunn <andrew@...n.ch>,
Vladimir Oltean <olteanv@...il.com>,
Claudiu Manoil <claudiu.manoil@....com>,
Alexandre Belloni <alexandre.belloni@...tlin.com>,
UNGLinuxDriver@...rochip.com,
Xiaoliang Yang <xiaoliang.yang_1@....com>,
Colin Foster <colin.foster@...advantage.com>
Subject: [PATCH net-next 3/3] selftests: ocelot: tc_flower_chains: reorder interfaces
Use the standard interface order h1, swp1, swp2, h2 that is used by the
forwarding selftest framework. The previous order was confusing even
with the ASCII drawing. That isn't needed anymore.
Signed-off-by: Vladimir Oltean <vladimir.oltean@....com>
---
.../drivers/net/ocelot/tc_flower_chains.sh | 38 +++++++++----------
1 file changed, 17 insertions(+), 21 deletions(-)
diff --git a/tools/testing/selftests/drivers/net/ocelot/tc_flower_chains.sh b/tools/testing/selftests/drivers/net/ocelot/tc_flower_chains.sh
index e67a722b2013..d04cbe217eef 100755
--- a/tools/testing/selftests/drivers/net/ocelot/tc_flower_chains.sh
+++ b/tools/testing/selftests/drivers/net/ocelot/tc_flower_chains.sh
@@ -4,36 +4,18 @@
WAIT_TIME=1
NUM_NETIFS=4
+STABLE_MAC_ADDRS=yes
lib_dir=$(dirname $0)/../../../net/forwarding
source $lib_dir/tc_common.sh
source $lib_dir/lib.sh
require_command tcpdump
-#
-# +---------------------------------------------+
-# | DUT ports Generator ports |
-# | +--------+ +--------+ +--------+ +--------+ |
-# | | | | | | | | | |
-# | | swp2 | | swp1 | | h1 | | h2 | |
-# | | | | | | | | | |
-# +-+--------+-+--------+-+--------+-+--------+-+
-# | | | |
-# | | | |
-# | +-----------+ |
-# | |
-# +--------------------------------+
-
-swp2=${NETIFS[p1]}
+h1=${NETIFS[p1]}
swp1=${NETIFS[p2]}
-h1=${NETIFS[p3]}
+swp2=${NETIFS[p3]}
h2=${NETIFS[p4]}
-swp2_mac="de:ad:be:ef:00:00"
-swp1_mac="de:ad:be:ef:00:01"
-h1_mac="de:ad:be:ef:00:02"
-h2_mac="de:ad:be:ef:00:03"
-
# Helpers to map a VCAP IS1 and VCAP IS2 lookup and policy to a chain number
# used by the kernel driver. The numbers are:
# VCAP IS1 lookup 0: 10000
@@ -204,6 +186,9 @@ cleanup()
test_vlan_pop()
{
+ local h1_mac=$(mac_get $h1)
+ local h2_mac=$(mac_get $h2)
+
RET=0
tcpdump_start $h1
@@ -227,6 +212,9 @@ test_vlan_pop()
test_vlan_push()
{
+ local h1_mac=$(mac_get $h1)
+ local h2_mac=$(mac_get $h2)
+
RET=0
tcpdump_start $h2.100
@@ -247,6 +235,9 @@ test_vlan_push()
test_vlan_ingress_modify()
{
+ local h1_mac=$(mac_get $h1)
+ local h2_mac=$(mac_get $h2)
+
RET=0
ip link set br0 type bridge vlan_filtering 1
@@ -284,6 +275,9 @@ test_vlan_ingress_modify()
test_vlan_egress_modify()
{
+ local h1_mac=$(mac_get $h1)
+ local h2_mac=$(mac_get $h2)
+
RET=0
tc qdisc add dev $swp1 clsact
@@ -321,6 +315,8 @@ test_vlan_egress_modify()
test_skbedit_priority()
{
+ local h1_mac=$(mac_get $h1)
+ local h2_mac=$(mac_get $h2)
local num_pkts=100
before=$(ethtool_stats_get $swp2 'rx_green_prio_7')
--
2.25.1
Powered by blists - more mailing lists