summaryrefslogtreecommitdiff
path: root/lib/lacp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lacp.c')
-rw-r--r--lib/lacp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/lacp.c b/lib/lacp.c
index ce5343b76..46d5bfb17 100644
--- a/lib/lacp.c
+++ b/lib/lacp.c
@@ -92,7 +92,7 @@ enum slave_status {
};
struct lacp {
- struct list node; /* Node in all_lacps list. */
+ struct ovs_list node; /* Node in all_lacps list. */
char *name; /* Name of this lacp object. */
uint8_t sys_id[ETH_ADDR_LEN]; /* System ID. */
uint16_t sys_priority; /* System Priority. */
@@ -132,8 +132,8 @@ struct slave {
};
static struct ovs_mutex mutex;
-static struct list all_lacps__ = LIST_INITIALIZER(&all_lacps__);
-static struct list *const all_lacps OVS_GUARDED_BY(mutex) = &all_lacps__;
+static struct ovs_list all_lacps__ = LIST_INITIALIZER(&all_lacps__);
+static struct ovs_list *const all_lacps OVS_GUARDED_BY(mutex) = &all_lacps__;
static void lacp_update_attached(struct lacp *) OVS_REQUIRES(mutex);