aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/xl
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2016-02-01 17:41:21 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2016-02-01 17:41:21 +0000
commit8ec07310fa37cb32a6fb0347014913bb825c6e7b (patch)
tree716c1cf6a00f699a83247c820b170dad99208d86 /sys/dev/xl
parent984777c43f7686216aa9435f411966c0effc0638 (diff)
downloadsrc-8ec07310fa37cb32a6fb0347014913bb825c6e7b.tar.gz
src-8ec07310fa37cb32a6fb0347014913bb825c6e7b.zip
These files were getting sys/malloc.h and vm/uma.h with header pollution
via sys/mbuf.h
Notes
Notes: svn path=/head/; revision=295126
Diffstat (limited to 'sys/dev/xl')
-rw-r--r--sys/dev/xl/if_xl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/xl/if_xl.c b/sys/dev/xl/if_xl.c
index f7bd599a04ed..9568967d609b 100644
--- a/sys/dev/xl/if_xl.c
+++ b/sys/dev/xl/if_xl.c
@@ -106,8 +106,9 @@ __FBSDID("$FreeBSD$");
#include <sys/systm.h>
#include <sys/sockio.h>
#include <sys/endian.h>
-#include <sys/mbuf.h>
#include <sys/kernel.h>
+#include <sys/malloc.h>
+#include <sys/mbuf.h>
#include <sys/module.h>
#include <sys/socket.h>
#include <sys/taskqueue.h>