]> git.proxmox.com Git - mirror_ovs.git/blobdiff - lib/rstp.c
list: Rename struct list to struct ovs_list
[mirror_ovs.git] / lib / rstp.c
index 9573fe49a629172a21e1c2a49c6e2946105a0f6f..022fc3cfbd06225a43f99e8b5a1e03a3372bda86 100644 (file)
@@ -50,8 +50,8 @@ VLOG_DEFINE_THIS_MODULE(rstp);
 
 struct ovs_mutex rstp_mutex = OVS_MUTEX_INITIALIZER;
 
-static struct list all_rstps__ = LIST_INITIALIZER(&all_rstps__);
-static struct list *const all_rstps OVS_GUARDED_BY(rstp_mutex) = &all_rstps__;
+static struct ovs_list all_rstps__ = LIST_INITIALIZER(&all_rstps__);
+static struct ovs_list *const all_rstps OVS_GUARDED_BY(rstp_mutex) = &all_rstps__;
 
 /* Internal use only. */
 static void rstp_set_bridge_address__(struct rstp *, rstp_identifier)