diff options
author | glebius <glebius@FreeBSD.org> | 2016-02-01 17:41:21 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2016-02-01 17:41:21 +0000 |
commit | 306a6faf84555a480968ca79e8c67749c0aeffc6 (patch) | |
tree | 716c1cf6a00f699a83247c820b170dad99208d86 /sys/contrib | |
parent | 2cf7257fdf54821c78e5a20f1923df89ac1870b8 (diff) | |
download | FreeBSD-src-306a6faf84555a480968ca79e8c67749c0aeffc6.zip FreeBSD-src-306a6faf84555a480968ca79e8c67749c0aeffc6.tar.gz |
These files were getting sys/malloc.h and vm/uma.h with header pollution
via sys/mbuf.h
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/ipfilter/netinet/ip_compat.h | 1 | ||||
-rw-r--r-- | sys/contrib/ipfilter/netinet/ip_fil_freebsd.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/contrib/ipfilter/netinet/ip_compat.h b/sys/contrib/ipfilter/netinet/ip_compat.h index 8aece74..bcb47e9 100644 --- a/sys/contrib/ipfilter/netinet/ip_compat.h +++ b/sys/contrib/ipfilter/netinet/ip_compat.h @@ -147,6 +147,7 @@ struct ether_addr { # include <sys/selinfo.h> # include <sys/lock.h> +# include <sys/malloc.h> # include <sys/mutex.h> # define KRWLOCK_FILL_SZ 56 # define KMUTEX_FILL_SZ 56 diff --git a/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c b/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c index 30ec46c..8a5a90d 100644 --- a/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c +++ b/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c @@ -36,6 +36,7 @@ static const char rcsid[] = "@(#)$Id$"; #if defined(__FreeBSD_version) && (__FreeBSD_version >= 800000) #include <sys/jail.h> #endif +# include <sys/malloc.h> # include <sys/mbuf.h> # include <sys/sockopt.h> #if !defined(__hpux) |