summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-10-02 16:03:00 -0700
committerBen Pfaff <blp@ovn.org>2018-10-03 14:11:33 -0700
commit6d3b06eebb34074ab49ce39fa36e70f5980ec35e (patch)
treeeeec060f451be6e5a64e7d23cf78a309f9344d41
parent24655bb69bad3d9222cf0c4d6a0149726de6253e (diff)
downloadopenvswitch-6d3b06eebb34074ab49ce39fa36e70f5980ec35e.tar.gz
Revert "bridge: Fix ovs-appctl qos/show repeated queue information"
This reverts commit 6b4d0211e84a ("bridge: Fix ovs-appctl qos/show repeated queue information"), which is no longer necessary now that commit 65f3c34c7417 ("netdev: Properly clear 'details' when iterating in NETDEV_QOS_FOR_EACH.") has been applied. The former commit fixed a symptom of the root cause fixed by the latter. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Eelco Chaudron <echaudro@redhat.com> Acked-by: Flavio Leitner <fbl@sysclose.org>
-rw-r--r--vswitchd/bridge.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c
index de55ba6df..4b4fd8452 100644
--- a/vswitchd/bridge.c
+++ b/vswitchd/bridge.c
@@ -3171,7 +3171,6 @@ qos_unixctl_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
smap_init(&details);
NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &dump, iface->netdev) {
qos_unixctl_show_queue(queue_id, &details, iface, &ds);
- smap_clear(&details);
}
smap_destroy(&details);