diff options
Diffstat (limited to 'sys/netgraph')
-rw-r--r-- | sys/netgraph/netflow/netflow.c | 1 | ||||
-rw-r--r-- | sys/netgraph/netflow/netflow_v9.c | 2 | ||||
-rw-r--r-- | sys/netgraph/netflow/ng_netflow.c | 2 | ||||
-rw-r--r-- | sys/netgraph/ng_base.c | 1 |
4 files changed, 6 insertions, 0 deletions
diff --git a/sys/netgraph/netflow/netflow.c b/sys/netgraph/netflow/netflow.c index 6adffc9..84dee47 100644 --- a/sys/netgraph/netflow/netflow.c +++ b/sys/netgraph/netflow/netflow.c @@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$"); #include <sys/mbuf.h> #include <sys/syslog.h> #include <sys/socket.h> +#include <vm/uma.h> #include <net/if.h> #include <net/if_dl.h> diff --git a/sys/netgraph/netflow/netflow_v9.c b/sys/netgraph/netflow/netflow_v9.c index 2fc700d..5124bbd 100644 --- a/sys/netgraph/netflow/netflow_v9.c +++ b/sys/netgraph/netflow/netflow_v9.c @@ -37,9 +37,11 @@ __FBSDID("$FreeBSD$"); #include <sys/kernel.h> #include <sys/ktr.h> #include <sys/limits.h> +#include <sys/malloc.h> #include <sys/mbuf.h> #include <sys/syslog.h> #include <sys/socket.h> +#include <vm/uma.h> #include <net/if.h> #include <net/route.h> diff --git a/sys/netgraph/netflow/ng_netflow.c b/sys/netgraph/netflow/ng_netflow.c index b524ca5..4f9f953c 100644 --- a/sys/netgraph/netflow/ng_netflow.c +++ b/sys/netgraph/netflow/ng_netflow.c @@ -40,10 +40,12 @@ __FBSDID("$FreeBSD$"); #include <sys/kernel.h> #include <sys/ktr.h> #include <sys/limits.h> +#include <sys/malloc.h> #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/syslog.h> #include <sys/ctype.h> +#include <vm/uma.h> #include <net/if.h> #include <net/ethernet.h> diff --git a/sys/netgraph/ng_base.c b/sys/netgraph/ng_base.c index 673dc25..0f48e12 100644 --- a/sys/netgraph/ng_base.c +++ b/sys/netgraph/ng_base.c @@ -63,6 +63,7 @@ #include <sys/syslog.h> #include <sys/unistd.h> #include <machine/cpu.h> +#include <vm/uma.h> #include <net/netisr.h> #include <net/vnet.h> |