mirror of
https://github.com/openvswitch/ovs
synced 2025-10-29 15:28:56 +00:00
list: Rename struct list to struct ovs_list
struct list is a common name and can't be used in public headers. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user