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:38 -0700
commita598e6ae93f5a850d57c50d036db204dee9c6811 (patch)
treed19037ecca0605763589e95d4845910547b9509e
parente99623722736b4b99fdcf97f66b3c6d20fe6a381 (diff)
downloadopenvswitch-a598e6ae93f5a850d57c50d036db204dee9c6811.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 aef38b543..18c16fb83 100644
--- a/vswitchd/bridge.c
+++ b/vswitchd/bridge.c
@@ -3174,7 +3174,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);