diff options
author | Gleb Smirnoff <glebius@FreeBSD.org> | 2015-03-17 14:16:50 +0000 |
---|---|---|
committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2015-03-17 14:16:50 +0000 |
commit | 8c4df6296b725aa5506e24b034830e49f35384aa (patch) | |
tree | 869df67bc397915df63e6edbc8bfb119efd6aef5 /sys | |
parent | 4f42bb1021121dde3931f6d331347e95ecb865e1 (diff) | |
download | src-8c4df6296b725aa5506e24b034830e49f35384aa.tar.gz src-8c4df6296b725aa5506e24b034830e49f35384aa.zip |
Reduce header pollution.
Notes
Notes:
svn path=/head/; revision=280173
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/uipc_mbufhash.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/kern/uipc_mbufhash.c b/sys/kern/uipc_mbufhash.c index 75f4f93988f9..9efc08b1432f 100644 --- a/sys/kern/uipc_mbufhash.c +++ b/sys/kern/uipc_mbufhash.c @@ -24,13 +24,8 @@ __FBSDID("$FreeBSD$"); #include "opt_inet6.h" #include <sys/param.h> -#include <sys/kernel.h> #include <sys/mbuf.h> #include <sys/fnv_hash.h> -#include <sys/socket.h> - -#include <net/if.h> -#include <net/if_var.h> #include <net/ethernet.h> @@ -46,8 +41,6 @@ __FBSDID("$FreeBSD$"); #include <netinet/ip6.h> #endif -#include <net/if_vlan_var.h> - static const void * m_ether_tcpip_hash_gethdr(const struct mbuf *m, const u_int off, const u_int len, void *buf) |