Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Dec 2020 20:27:06 +0000 (UTC)
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r368259 - head/sys/dev/acpica
Message-ID:  <202012012027.0B1KR670036012@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012012027.0B1KR670036012>