mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 14:25:26 +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:
@@ -36,7 +36,7 @@ static void nln_report(struct nln *nln, void *change);
|
||||
|
||||
struct nln {
|
||||
struct nl_sock *notify_sock; /* Netlink socket. */
|
||||
struct list all_notifiers; /* All nln notifiers. */
|
||||
struct ovs_list all_notifiers; /* All nln notifiers. */
|
||||
bool has_run; /* Guard for run and wait functions. */
|
||||
|
||||
/* Passed in by nln_create(). */
|
||||
@@ -49,7 +49,7 @@ struct nln {
|
||||
struct nln_notifier {
|
||||
struct nln *nln; /* Parent nln. */
|
||||
|
||||
struct list node;
|
||||
struct ovs_list node;
|
||||
nln_notify_func *cb;
|
||||
void *aux;
|
||||
};
|
||||
|
Reference in New Issue
Block a user