X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=vswitchd%2Fbridge.c;h=ecbedab898729b86160d8e8894c94fc990529c4f;hb=0cbc096648c18dd6c374a0f1eb11f9b3a604e634;hp=7a70b43dd5d870ea94cc36f468c5f5e3352e4ca1;hpb=c698e3b1e14025ce067d7e15e4530a86a3895b6c;p=sliver-openvswitch.git diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 7a70b43dd..ecbedab89 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -66,7 +66,6 @@ struct iface { struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */ struct port *port; /* Containing port. */ char *name; /* Host network device name. */ - tag_type tag; /* Tag associated with this interface. */ /* These members are valid only after bridge_reconfigure() causes them to * be initialized. */ @@ -3000,7 +2999,6 @@ iface_create(struct port *port, const struct ovsrec_interface *if_cfg) iface->port = port; iface->name = xstrdup(name); iface->ofp_port = -1; - iface->tag = tag_create_random(); iface->netdev = NULL; iface->cfg = if_cfg; iface->need_refresh = true;