svn commit: r361039 - head/sys/i386/i386
Mark Johnston
markj at FreeBSD.org
Thu May 14 17:56:45 UTC 2020
Author: markj
Date: Thu May 14 17:56:44 2020
New Revision: 361039
URL: https://svnweb.freebsd.org/changeset/base/361039
Log:
Fix the i386 build after r361033.
Reported by: Jenkins
Modified:
head/sys/i386/i386/mp_machdep.c
Modified: head/sys/i386/i386/mp_machdep.c
==============================================================================
--- head/sys/i386/i386/mp_machdep.c Thu May 14 17:56:43 2020 (r361038)
+++ head/sys/i386/i386/mp_machdep.c Thu May 14 17:56:44 2020 (r361039)
@@ -83,6 +83,9 @@ __FBSDID("$FreeBSD$");
#include <machine/specialreg.h>
#include <x86/ucode.h>
+#include <contrib/dev/acpica/include/acpi.h>
+#include <dev/acpica/acpivar.h>
+
#define WARMBOOT_TARGET 0
#define WARMBOOT_OFF (PMAP_MAP_LOW + 0x0467)
#define WARMBOOT_SEG (PMAP_MAP_LOW + 0x0469)
@@ -199,7 +202,9 @@ cpu_mp_start(void)
set_interrupt_apic_ids();
+#if MAXMEMDOM > 1
acpi_pxm_set_cpu_locality();
+#endif
}
/*
More information about the svn-src-all
mailing list