svn commit: r368259 - head/sys/dev/acpica

Oleksandr Tymoshenko gonzo at FreeBSD.org
Tue Dec 1 20:27:06 UTC 2020


Author: gonzo
Date: Tue Dec  1 20:27:06 2020
New Revision: 368259
URL: https://svnweb.freebsd.org/changeset/base/368259

Log:
  [arm64] Parse ACPI _PXM property on ARM64 platform
  
  Enable devices' NUMA proximity infromation parsing on ARM64 systems
  
  Sponsored by:	Ampere Computing
  Submitted by:	Klara, Inc.

Modified:
  head/sys/dev/acpica/acpi.c

Modified: head/sys/dev/acpica/acpi.c
==============================================================================
--- head/sys/dev/acpica/acpi.c	Tue Dec  1 20:10:55 2020	(r368258)
+++ head/sys/dev/acpica/acpi.c	Tue Dec  1 20:27:06 2020	(r368259)
@@ -1122,7 +1122,7 @@ static int
 acpi_parse_pxm(device_t dev)
 {
 #ifdef NUMA
-#if defined(__i386__) || defined(__amd64__)
+#if defined(__i386__) || defined(__amd64__) || defined(__aarch64__)
 	ACPI_HANDLE handle;
 	ACPI_STATUS status;
 	int pxm;


More information about the svn-src-head mailing list