ovs-brcompatd: Don't include the local port in BRCTL_GET_PORT_LIST output.
authorBen Pfaff <blp@nicira.com>
Mon, 17 Aug 2009 16:30:29 +0000 (09:30 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 18 Aug 2009 19:36:47 +0000 (12:36 -0700)
The BRCTL_GET_PORT_LIST ioctl is not supposed to include the bridge port
itself in the list of ports, but ovs-brcompatd was doing that.

vswitchd/ovs-brcompatd.c

index 02ebab8..50ed632 100644 (file)
@@ -865,6 +865,8 @@ handle_get_ports_cmd(struct ofpbuf *buffer)
 
     svec_init(&ports);
     get_bridge_ports(ovs_bridge, &ports, br_vlan);
+    svec_sort(&ports);
+    svec_del(&ports, linux_bridge);
     send_ifindex_reply(seq, &ports); /* XXX bonds won't show up */
     svec_destroy(&ports);