diff options
Diffstat (limited to 'sys/netgraph/netflow')
-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 |
3 files changed, 5 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> |