aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>2020-11-02 19:20:06 +0000
committerAlan Cox <alc@FreeBSD.org>2020-11-02 19:20:06 +0000
commit9b4e77cb97fbbb4d8b1f0050c586863c6999a20b (patch)
treeac06cf920b379f640b31dc1ade6003c29ed972fd /sys/amd64
parent23b4092837404dc30b93034a0252100457c1e7e9 (diff)
downloadsrc-9b4e77cb97fbbb4d8b1f0050c586863c6999a20b.tar.gz
src-9b4e77cb97fbbb4d8b1f0050c586863c6999a20b.zip
Tidy up the #includes. Recent changes, such as the introduction of
VM_ALLOC_WAITOK and vm_page_unwire_noq(), have eliminated the need for many of the #includes. Reviewed by: kib, markj Differential Revision: https://reviews.freebsd.org/D27052
Notes
Notes: svn path=/head/; revision=367281
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/amd64/uma_machdep.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/amd64/amd64/uma_machdep.c b/sys/amd64/amd64/uma_machdep.c
index 27939e4aa033..d080abeefdcc 100644
--- a/sys/amd64/amd64/uma_machdep.c
+++ b/sys/amd64/amd64/uma_machdep.c
@@ -30,15 +30,10 @@
__FBSDID("$FreeBSD$");
#include <sys/param.h>
-#include <sys/lock.h>
#include <sys/malloc.h>
-#include <sys/mutex.h>
-#include <sys/systm.h>
-#include <sys/vmmeter.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_page.h>
-#include <vm/vm_pageout.h>
#include <vm/vm_dumpset.h>
#include <vm/uma.h>
#include <vm/uma_int.h>