vswitchd: Remove unused 'tag' from 'struct iface'.
authorEthan Jackson <ethan@nicira.com>
Fri, 20 Apr 2012 19:57:29 +0000 (12:57 -0700)
committerEthan Jackson <ethan@nicira.com>
Mon, 23 Apr 2012 10:11:27 +0000 (03:11 -0700)
Signed-off-by: Ethan Jackson <ethan@nicira.com>
vswitchd/bridge.c

index 7a70b43..ecbedab 100644 (file)
@@ -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;