From 90ddb3aa7a023e89540f48d444436937f3953402 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 2 Oct 2018 16:03:00 -0700 Subject: [PATCH] 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 Acked-by: Eelco Chaudron Acked-by: Flavio Leitner --- vswitchd/bridge.c | 1 - 1 file changed, 1 deletion(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 875bb607c60..706a07cc6fb 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -3235,7 +3235,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);