aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_dump.c
diff options
context:
space:
mode:
authorJeff Roberson <jeff@FreeBSD.org>2019-08-16 00:45:14 +0000
committerJeff Roberson <jeff@FreeBSD.org>2019-08-16 00:45:14 +0000
commit2194393787801f71cea02463d999fbc1071790fc (patch)
treeb7b2c583734007529b2eb3e24f3cf506dd3599e6 /sys/kern/kern_dump.c
parentccfbff6d592ecb89e9d2195a68d66d691e219b9a (diff)
downloadsrc-2194393787801f71cea02463d999fbc1071790fc.tar.gz
src-2194393787801f71cea02463d999fbc1071790fc.zip
Move phys_avail definition into MI code. It is consumed in the MI layer and
doing so adds more flexibility with less redundant code. Reviewed by: jhb, markj, kib Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D21250
Notes
Notes: svn path=/head/; revision=351108
Diffstat (limited to 'sys/kern/kern_dump.c')
-rw-r--r--sys/kern/kern_dump.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/kern/kern_dump.c b/sys/kern/kern_dump.c
index be5339e3a9e5..f74b018b42af 100644
--- a/sys/kern/kern_dump.c
+++ b/sys/kern/kern_dump.c
@@ -37,6 +37,8 @@ __FBSDID("$FreeBSD$");
#include <sys/watchdog.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
+#include <vm/vm_page.h>
+#include <vm/vm_phys.h>
#include <vm/pmap.h>
#include <machine/dump.h>
#include <machine/elf.h>