mirror of
https://github.com/openvswitch/ovs
synced 2025-08-29 13:27:59 +00:00
vswitchd: Remove unused 'tag' from 'struct iface'.
Signed-off-by: Ethan Jackson <ethan@nicira.com>
This commit is contained in:
parent
56e9c3b998
commit
f5787280d4
@ -66,7 +66,6 @@ struct iface {
|
|||||||
struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */
|
struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */
|
||||||
struct port *port; /* Containing port. */
|
struct port *port; /* Containing port. */
|
||||||
char *name; /* Host network device name. */
|
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
|
/* These members are valid only after bridge_reconfigure() causes them to
|
||||||
* be initialized. */
|
* be initialized. */
|
||||||
@ -3003,7 +3002,6 @@ iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
|
|||||||
iface->port = port;
|
iface->port = port;
|
||||||
iface->name = xstrdup(name);
|
iface->name = xstrdup(name);
|
||||||
iface->ofp_port = -1;
|
iface->ofp_port = -1;
|
||||||
iface->tag = tag_create_random();
|
|
||||||
iface->netdev = NULL;
|
iface->netdev = NULL;
|
||||||
iface->cfg = if_cfg;
|
iface->cfg = if_cfg;
|
||||||
iface->need_refresh = true;
|
iface->need_refresh = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user