diff mbox

[ovs-dev,v2,20/23] Assorted #include additions

Message ID ba251ea21c56b9be5b7d7234c4ed0026d304f639.1457026916.git.ben@skyportsystems.com
State Not Applicable
Headers show

Commit Message

ben@skyportsystems.com March 3, 2016, 6:21 p.m. UTC
From: Ben Warren <ben@skyportsystems.com>

Necessary in preparation for making ofp-util.h public

Signed-off-by: Ben Warren <ben@skyportsystems.com>
---
 ofproto/ofproto-dpif-ipfix.c | 1 +
 ovn/controller/ofctrl.c      | 3 +++
 ovn/controller/physical.c    | 2 ++
 ovn/lib/expr.c               | 1 +
 tests/test-ovn.c             | 1 +
 tests/test-ovsdb.c           | 1 +
 tests/test-uuid.c            | 1 +
 7 files changed, 10 insertions(+)
diff mbox

Patch

diff --git a/ofproto/ofproto-dpif-ipfix.c b/ofproto/ofproto-dpif-ipfix.c
index 5fdc789..0e952fa 100644
--- a/ofproto/ofproto-dpif-ipfix.c
+++ b/ofproto/ofproto-dpif-ipfix.c
@@ -22,6 +22,7 @@ 
 #include "flow.h"
 #include "hash.h"
 #include "hmap.h"
+#include "netdev.h"
 #include "openvswitch/list.h"
 #include "openvswitch/ofpbuf.h"
 #include "ofproto.h"
diff --git a/ovn/controller/ofctrl.c b/ovn/controller/ofctrl.c
index 7f662d8..754c56f 100644
--- a/ovn/controller/ofctrl.c
+++ b/ovn/controller/ofctrl.c
@@ -14,8 +14,10 @@ 
  */
 
 #include <config.h>
+#include "byte-order.h"
 #include "ofctrl.h"
 #include "dirs.h"
+#include "hash.h"
 #include "openvswitch/dynamic-string.h"
 #include "hmap.h"
 #include "openvswitch/match.h"
@@ -30,6 +32,7 @@ 
 #include "physical.h"
 #include "rconn.h"
 #include "socket-util.h"
+#include "util.h"
 #include "vswitch-idl.h"
 
 VLOG_DEFINE_THIS_MODULE(ofctrl);
diff --git a/ovn/controller/physical.c b/ovn/controller/physical.c
index 4eb253f..61f9eb6 100644
--- a/ovn/controller/physical.c
+++ b/ovn/controller/physical.c
@@ -15,6 +15,8 @@ 
 
 #include <config.h>
 #include "physical.h"
+#include "byte-order.h"
+#include "flow.h"
 #include "lflow.h"
 #include "openvswitch/match.h"
 #include "ofctrl.h"
diff --git a/ovn/lib/expr.c b/ovn/lib/expr.c
index 2e959f5..85eb837 100644
--- a/ovn/lib/expr.c
+++ b/ovn/lib/expr.c
@@ -15,6 +15,7 @@ 
  */
 
 #include <config.h>
+#include "byte-order.h"
 #include "expr.h"
 #include "openvswitch/dynamic-string.h"
 #include "json.h"
diff --git a/tests/test-ovn.c b/tests/test-ovn.c
index ba63d0c..8de7fda 100644
--- a/tests/test-ovn.c
+++ b/tests/test-ovn.c
@@ -21,6 +21,7 @@ 
 #include <sys/wait.h>
 #include "openvswitch/dynamic-string.h"
 #include "fatal-signal.h"
+#include "flow.h"
 #include "openvswitch/match.h"
 #include "ofp-actions.h"
 #include "openvswitch/ofpbuf.h"
diff --git a/tests/test-ovsdb.c b/tests/test-ovsdb.c
index f0bbfcd..78551cd 100644
--- a/tests/test-ovsdb.c
+++ b/tests/test-ovsdb.c
@@ -23,6 +23,7 @@ 
 #include <stdio.h>
 #include <stdlib.h>
 
+#include "byte-order.h"
 #include "command-line.h"
 #include "openvswitch/dynamic-string.h"
 #include "json.h"
diff --git a/tests/test-uuid.c b/tests/test-uuid.c
index 65878ea..3b47ab6 100644
--- a/tests/test-uuid.c
+++ b/tests/test-uuid.c
@@ -16,6 +16,7 @@ 
 
 #include <config.h>
 #undef NDEBUG
+#include "util.h"
 #include "uuid.h"
 #include <stdio.h>
 #include "ovstest.h"