diff options
-rw-r--r-- | sys/amd64/amd64/sys_machdep.c | 3 | ||||
-rw-r--r-- | sys/i386/i386/sys_machdep.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sys/amd64/amd64/sys_machdep.c b/sys/amd64/amd64/sys_machdep.c index e9c7ddf..d722735 100644 --- a/sys/amd64/amd64/sys_machdep.c +++ b/sys/amd64/amd64/sys_machdep.c @@ -55,6 +55,9 @@ #include <machine/cpu.h> #include <machine/pcb_ext.h> /* pcb.h included by sys/user.h */ #include <machine/sysarch.h> +#ifdef SMP +#include <machine/smp.h> +#endif #include <vm/vm_kern.h> /* for kernel_map */ diff --git a/sys/i386/i386/sys_machdep.c b/sys/i386/i386/sys_machdep.c index e9c7ddf..d722735 100644 --- a/sys/i386/i386/sys_machdep.c +++ b/sys/i386/i386/sys_machdep.c @@ -55,6 +55,9 @@ #include <machine/cpu.h> #include <machine/pcb_ext.h> /* pcb.h included by sys/user.h */ #include <machine/sysarch.h> +#ifdef SMP +#include <machine/smp.h> +#endif #include <vm/vm_kern.h> /* for kernel_map */ |