Fix build with SMP disabled.`

Reported by:	bf
This commit is contained in:
John Baldwin 2013-01-19 01:18:22 +00:00
parent ae4f863c89
commit b5821c6f0e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=245640
2 changed files with 8 additions and 0 deletions

View File

@ -102,6 +102,7 @@ __FBSDID("$FreeBSD$");
#include "opt_vm.h"
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/ktr.h>
@ -133,6 +134,8 @@ __FBSDID("$FreeBSD$");
#include <vm/vm_reserv.h>
#include <vm/uma.h>
#include <machine/intr_machdep.h>
#include <machine/apicvar.h>
#include <machine/cpu.h>
#include <machine/cputypes.h>
#include <machine/md_var.h>

View File

@ -136,6 +136,11 @@ __FBSDID("$FreeBSD$");
#include <vm/vm_reserv.h>
#include <vm/uma.h>
#ifdef DEV_APIC
#include <sys/bus.h>
#include <machine/intr_machdep.h>
#include <machine/apicvar.h>
#endif
#include <machine/cpu.h>
#include <machine/cputypes.h>
#include <machine/md_var.h>