summaryrefslogtreecommitdiff
path: root/lib/ovs-thread.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:19 +0100
commite6211adce42c28453e0004c7a3e342a3d52bb97d (patch)
treef4ededea7bc727aa458885ef336f712d4089c703 /lib/ovs-thread.c
parent55951e15e5603318219ea5efca160723bbb28111 (diff)
downloadopenvswitch-e6211adce42c28453e0004c7a3e342a3d52bb97d.tar.gz
lib: Move vlog.h to <openvswitch/vlog.h>
A new function vlog_insert_module() is introduced to avoid using list_insert() from the vlog.h header. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'lib/ovs-thread.c')
-rw-r--r--lib/ovs-thread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ovs-thread.c b/lib/ovs-thread.c
index 3dd0ed6eb..7d38c8001 100644
--- a/lib/ovs-thread.c
+++ b/lib/ovs-thread.c
@@ -25,6 +25,7 @@
#include <unistd.h>
#include "compiler.h"
#include "hash.h"
+#include "list.h"
#include "netdev-dpdk.h"
#include "ovs-rcu.h"
#include "poll-loop.h"
@@ -38,7 +39,7 @@
* cut-and-paste. Since "sparse" is just a checker, not a compiler, it
* doesn't matter that we don't define them. */
#else
-#include "vlog.h"
+#include "openvswitch/vlog.h"
VLOG_DEFINE_THIS_MODULE(ovs_thread);