aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2019-09-19 18:43:42 +0200
committerDave Barach <openvpp@barachs.net>2019-09-20 13:52:06 +0000
commit864d857c6c223be8ec11c588d65e8c5c2e211814 (patch)
tree12613644eef7f640cf673ef56c24f74a5ebdcd7e /src/vnet
parent0e402a98b20fbb7c5b715abd038c244c539bad36 (diff)
classify: remove includes from classifier header file
Type: refactor Change-Id: I6f0af1c3078edce1c1b29a8b99c4a232d7084d33 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet')
-rw-r--r--src/vnet/classify/flow_classify.c2
-rw-r--r--src/vnet/classify/vnet_classify.h10
-rw-r--r--src/vnet/dhcp/dhcp6_client_common_dp.c1
-rw-r--r--src/vnet/l2/l2_input.h1
-rw-r--r--src/vnet/l2/l2_vtr.h1
-rw-r--r--src/vnet/lisp-cp/lisp_types.c1
-rw-r--r--src/vnet/lldp/lldp_cli.c1
7 files changed, 7 insertions, 10 deletions
diff --git a/src/vnet/classify/flow_classify.c b/src/vnet/classify/flow_classify.c
index 941a030f640..afdadc66235 100644
--- a/src/vnet/classify/flow_classify.c
+++ b/src/vnet/classify/flow_classify.c
@@ -12,6 +12,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+
+#include <vnet/feature/feature.h>
#include <vnet/classify/flow_classify.h>
flow_classify_main_t flow_classify_main;
diff --git a/src/vnet/classify/vnet_classify.h b/src/vnet/classify/vnet_classify.h
index 986e0a68674..620ef9a1052 100644
--- a/src/vnet/classify/vnet_classify.h
+++ b/src/vnet/classify/vnet_classify.h
@@ -15,17 +15,7 @@
#ifndef __included_vnet_classify_h__
#define __included_vnet_classify_h__
-#include <stdarg.h>
-
-#include <vlib/vlib.h>
#include <vnet/vnet.h>
-#include <vnet/pg/pg.h>
-#include <vnet/ethernet/ethernet.h>
-#include <vnet/ethernet/packet.h>
-#include <vnet/ip/ip_packet.h>
-#include <vnet/ip/ip4_packet.h>
-#include <vnet/ip/ip6_packet.h>
-#include <vlib/cli.h>
#include <vnet/api_errno.h> /* for API error numbers */
#include <vppinfra/error.h>
diff --git a/src/vnet/dhcp/dhcp6_client_common_dp.c b/src/vnet/dhcp/dhcp6_client_common_dp.c
index d9e1fc7e2cc..7ca3b61defb 100644
--- a/src/vnet/dhcp/dhcp6_client_common_dp.c
+++ b/src/vnet/dhcp/dhcp6_client_common_dp.c
@@ -13,6 +13,7 @@
* limitations under the License.
*/
+#include <vnet/ethernet/ethernet.h>
#include <vnet/dhcp/dhcp6_client_common_dp.h>
#include <vnet/dhcp/dhcp6_ia_na_client_dp.h>
#include <vnet/dhcp/dhcp6_pd_client_dp.h>
diff --git a/src/vnet/l2/l2_input.h b/src/vnet/l2/l2_input.h
index 677186bbdf3..0e1e98f883d 100644
--- a/src/vnet/l2/l2_input.h
+++ b/src/vnet/l2/l2_input.h
@@ -21,6 +21,7 @@
#include <vlib/vlib.h>
#include <vnet/vnet.h>
#include <vnet/l2/l2_bd.h>
+#include <vnet/ethernet/ethernet.h>
#include <vnet/ethernet/packet.h>
#include <vnet/ip/ip.h>
diff --git a/src/vnet/l2/l2_vtr.h b/src/vnet/l2/l2_vtr.h
index f6454bf1eac..1cd9209973b 100644
--- a/src/vnet/l2/l2_vtr.h
+++ b/src/vnet/l2/l2_vtr.h
@@ -20,6 +20,7 @@
#include <vlib/vlib.h>
#include <vnet/vnet.h>
+#include <vnet/ethernet/ethernet.h>
#include <vnet/ethernet/packet.h>
#include <vnet/l2/l2_vtr.h>
diff --git a/src/vnet/lisp-cp/lisp_types.c b/src/vnet/lisp-cp/lisp_types.c
index 5691933f972..cc2b1b2516f 100644
--- a/src/vnet/lisp-cp/lisp_types.c
+++ b/src/vnet/lisp-cp/lisp_types.c
@@ -13,6 +13,7 @@
* limitations under the License.
*/
+#include <vnet/ethernet/ethernet.h>
#include <vnet/lisp-cp/lisp_types.h>
static u16 gid_address_put_no_vni (u8 * b, gid_address_t * gid);
diff --git a/src/vnet/lldp/lldp_cli.c b/src/vnet/lldp/lldp_cli.c
index 4680292317f..5f63e4a2e4f 100644
--- a/src/vnet/lldp/lldp_cli.c
+++ b/src/vnet/lldp/lldp_cli.c
@@ -18,6 +18,7 @@
* @brief LLDP CLI handling
*
*/
+#include <vnet/ethernet/ethernet.h>
#include <vnet/lisp-cp/lisp_types.h>
#include <vnet/lldp/lldp.h>
#include <vnet/lldp/lldp_node.h>