From f5787280d41df592a62fe10c42a61c60f077388c Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Fri, 20 Apr 2012 12:57:29 -0700 Subject: [PATCH] vswitchd: Remove unused 'tag' from 'struct iface'. Signed-off-by: Ethan Jackson --- vswitchd/bridge.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index f4a10e6a..15f6cb7d 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. */ @@ -3003,7 +3002,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; -- 2.30.2