From: Adrian Moreno <amorenoz@redhat.com>
To: netdev@vger.kernel.org
Cc: aconole@redhat.com, Adrian Moreno <amorenoz@redhat.com>,
Pravin B Shelar <pshelar@ovn.org>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Shuah Khan <shuah@kernel.org>,
dev@openvswitch.org, linux-kselftest@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH net-next 1/2] selftests: openvswitch: fix action formatting
Date: Mon, 3 Jun 2024 20:31:19 +0200 [thread overview]
Message-ID: <20240603183121.2305013-1-amorenoz@redhat.com> (raw)
In the action formatting function ("dpstr"), the iteration is made over
the nla_map, so if there are more than one attribute from the same type
we only print the first one.
Fix this by iterating over the actual attributes.
Signed-off-by: Adrian Moreno <amorenoz@redhat.com>
---
.../selftests/net/openvswitch/ovs-dpctl.py | 48 +++++++++++--------
1 file changed, 27 insertions(+), 21 deletions(-)
diff --git a/tools/testing/selftests/net/openvswitch/ovs-dpctl.py b/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
index 1dd057afd3fb..b76907ac0092 100644
--- a/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
+++ b/tools/testing/selftests/net/openvswitch/ovs-dpctl.py
@@ -437,40 +437,46 @@ class ovsactions(nla):
def dpstr(self, more=False):
print_str = ""
- for field in self.nla_map:
- if field[1] == "none" or self.get_attr(field[0]) is None:
+ for attr_name, value in self["attrs"]:
+ attr_desc = next(filter(lambda x: x[0] == attr_name, self.nla_map),
+ None)
+ if not attr_desc:
+ raise ValueError("Unknown attribute: %s" % attr)
+
+ attr_type = attr_desc[1]
+
+ if attr_type == "none":
continue
if print_str != "":
print_str += ","
- if field[1] == "uint32":
- if field[0] == "OVS_ACTION_ATTR_OUTPUT":
- print_str += "%d" % int(self.get_attr(field[0]))
- elif field[0] == "OVS_ACTION_ATTR_RECIRC":
- print_str += "recirc(0x%x)" % int(self.get_attr(field[0]))
- elif field[0] == "OVS_ACTION_ATTR_TRUNC":
- print_str += "trunc(%d)" % int(self.get_attr(field[0]))
- elif field[0] == "OVS_ACTION_ATTR_DROP":
- print_str += "drop(%d)" % int(self.get_attr(field[0]))
- elif field[1] == "flag":
- if field[0] == "OVS_ACTION_ATTR_CT_CLEAR":
+ if attr_type == "uint32":
+ if attr_name == "OVS_ACTION_ATTR_OUTPUT":
+ print_str += "%d" % int(value)
+ elif attr_name == "OVS_ACTION_ATTR_RECIRC":
+ print_str += "recirc(0x%x)" % int(value)
+ elif attr_name == "OVS_ACTION_ATTR_TRUNC":
+ print_str += "trunc(%d)" % int(value)
+ elif attr_name == "OVS_ACTION_ATTR_DROP":
+ print_str += "drop(%d)" % int(value)
+ elif attr_type == "flag":
+ if attr_name == "OVS_ACTION_ATTR_CT_CLEAR":
print_str += "ct_clear"
- elif field[0] == "OVS_ACTION_ATTR_POP_VLAN":
+ elif attr_name == "OVS_ACTION_ATTR_POP_VLAN":
print_str += "pop_vlan"
- elif field[0] == "OVS_ACTION_ATTR_POP_ETH":
+ elif attr_name == "OVS_ACTION_ATTR_POP_ETH":
print_str += "pop_eth"
- elif field[0] == "OVS_ACTION_ATTR_POP_NSH":
+ elif attr_name == "OVS_ACTION_ATTR_POP_NSH":
print_str += "pop_nsh"
- elif field[0] == "OVS_ACTION_ATTR_POP_MPLS":
+ elif attr_name == "OVS_ACTION_ATTR_POP_MPLS":
print_str += "pop_mpls"
else:
- datum = self.get_attr(field[0])
- if field[0] == "OVS_ACTION_ATTR_CLONE":
+ if attr_name == "OVS_ACTION_ATTR_CLONE":
print_str += "clone("
- print_str += datum.dpstr(more)
+ print_str += value.dpstr(more)
print_str += ")"
else:
- print_str += datum.dpstr(more)
+ print_str += value.dpstr(more)
return print_str
--
2.45.1
next reply other threads:[~2024-06-03 18:31 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-03 18:31 Adrian Moreno [this message]
2024-06-03 18:31 ` [PATCH net-next 2/2] selftests: openvswitch: set value to nla flags Adrian Moreno
2024-06-03 19:02 ` Aaron Conole
2024-06-11 15:03 ` Adrián Moreno
2024-06-14 15:54 ` Aaron Conole
2024-06-03 19:00 ` [PATCH net-next 1/2] selftests: openvswitch: fix action formatting Aaron Conole
2024-06-04 0:15 ` Jakub Kicinski
2024-06-06 9:05 ` Adrián Moreno
2024-06-11 14:04 ` Aaron Conole
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=20240603183121.2305013-1-amorenoz@redhat.com \
--to=amorenoz@redhat.com \
--cc=aconole@redhat.com \
--cc=davem@davemloft.net \
--cc=dev@openvswitch.org \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=pshelar@ovn.org \
--cc=shuah@kernel.org \
/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