- Add the right includes to use kmem_alloc(). This was broken by my

DPCPU commit.
Reported by:	bz
This commit is contained in:
Jeff Roberson 2009-06-25 00:14:27 +00:00
parent 5f4faf74cb
commit b7c3d41368

View File

@ -37,6 +37,13 @@ __FBSDID("$FreeBSD$");
#include <sys/sched.h>
#include <sys/smp.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_extern.h>
#include <vm/vm_kern.h>
#include <machine/bus.h>
#include <machine/cpu.h>
#include <machine/intr_machdep.h>