summaryrefslogtreecommitdiff
path: root/lib/rtbsd.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@noironetworks.com>2014-12-15 14:10:38 +0100
committerThomas Graf <tgraf@noironetworks.com>2014-12-15 14:15:16 +0100
commit55951e15e5603318219ea5efca160723bbb28111 (patch)
treebd330cbac77f1a8e595fd2e0079d36aa7875eb3c /lib/rtbsd.c
parentca6ba70092b1528e12d3140d70232175a13c335d (diff)
downloadopenvswitch-55951e15e5603318219ea5efca160723bbb28111.tar.gz
lib: Expose struct ovs_list definition in <openvswitch/list.h>
Expose the struct ovs_list definition in <openvswitch/list.h>. Keep the list access API private for now. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'lib/rtbsd.c')
-rw-r--r--lib/rtbsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rtbsd.c b/lib/rtbsd.c
index 46a0632cc..d33f64bd6 100644
--- a/lib/rtbsd.c
+++ b/lib/rtbsd.c
@@ -38,7 +38,7 @@ static struct ovs_mutex rtbsd_mutex = OVS_MUTEX_INITIALIZER;
static int notify_sock = -1;
/* All registered notifiers. */
-static struct ovs_list all_notifiers = LIST_INITIALIZER(&all_notifiers);
+static struct ovs_list all_notifiers = OVS_LIST_INITIALIZER(&all_notifiers);
static void rtbsd_report_change(const struct if_msghdr *)
OVS_REQUIRES(rtbsd_mutex);