aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2009-02-27 14:12:05 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2009-02-27 14:12:05 +0000
commit33553d6e997f102da7a5f27d534b3ee57beb0a87 (patch)
tree5eda124dfca0f61a8005b2cb09ebb3f08ba9fffc /sys/netgraph
parente4c38888b7fdbe0b9d9524637b8a3dcfecacad2f (diff)
Notes
Diffstat (limited to 'sys/netgraph')
-rw-r--r--sys/netgraph/atm/ng_atm.c3
-rw-r--r--sys/netgraph/ng_ether.c3
-rw-r--r--sys/netgraph/ng_gif.c1
3 files changed, 7 insertions, 0 deletions
diff --git a/sys/netgraph/atm/ng_atm.c b/sys/netgraph/atm/ng_atm.c
index e5e1e2eaadc1..88c8cf09d7a4 100644
--- a/sys/netgraph/atm/ng_atm.c
+++ b/sys/netgraph/atm/ng_atm.c
@@ -34,6 +34,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_route.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
@@ -54,6 +56,7 @@ __FBSDID("$FreeBSD$");
#include <net/if_var.h>
#include <net/if_media.h>
#include <net/if_atm.h>
+#include <net/route.h>
#include <net/vnet.h>
#include <netgraph/ng_message.h>
diff --git a/sys/netgraph/ng_ether.c b/sys/netgraph/ng_ether.c
index c03befc45530..aaf4372f7d85 100644
--- a/sys/netgraph/ng_ether.c
+++ b/sys/netgraph/ng_ether.c
@@ -46,6 +46,8 @@
* ng_ether(4) netgraph node type
*/
+#include "opt_route.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
@@ -63,6 +65,7 @@
#include <net/if_var.h>
#include <net/ethernet.h>
#include <net/if_bridgevar.h>
+#include <net/route.h>
#include <net/vnet.h>
#include <netgraph/ng_message.h>
diff --git a/sys/netgraph/ng_gif.c b/sys/netgraph/ng_gif.c
index 9a2d3b94e0c9..5b59feda2a4c 100644
--- a/sys/netgraph/ng_gif.c
+++ b/sys/netgraph/ng_gif.c
@@ -68,6 +68,7 @@
/*
* ng_gif(4) netgraph node type
*/
+#include "opt_route.h"
#include <sys/param.h>
#include <sys/systm.h>