svn commit: r322457 - head/sys/x86/acpica

Roger Pau Monné royger at FreeBSD.org
Sun Aug 13 14:50:39 UTC 2017


Author: royger
Date: Sun Aug 13 14:50:38 2017
New Revision: 322457
URL: https://svnweb.freebsd.org/changeset/base/322457

Log:
  srat: use pmap_unmapbios
  
  To match the pmap_mapbios.
  
  Reported by:	jhb
  MFC with:	r322403

Modified:
  head/sys/x86/acpica/srat.c

Modified: head/sys/x86/acpica/srat.c
==============================================================================
--- head/sys/x86/acpica/srat.c	Sun Aug 13 14:42:23 2017	(r322456)
+++ head/sys/x86/acpica/srat.c	Sun Aug 13 14:50:38 2017	(r322457)
@@ -536,7 +536,7 @@ srat_set_cpus(void *dummy)
 	}
 
 	/* Last usage of the cpus array, unmap it. */
-	pmap_unmapdev((vm_offset_t)cpus, sizeof(*cpus) * (max_apic_id + 1));
+	pmap_unmapbios((vm_offset_t)cpus, sizeof(*cpus) * (max_apic_id + 1));
 	cpus = NULL;
 }
 SYSINIT(srat_set_cpus, SI_SUB_CPU, SI_ORDER_ANY, srat_set_cpus, NULL);


More information about the svn-src-all mailing list