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

Konstantin Belousov kib at FreeBSD.org
Sun Dec 11 19:01:28 UTC 2016


Author: kib
Date: Sun Dec 11 19:01:27 2016
New Revision: 309854
URL: https://svnweb.freebsd.org/changeset/base/309854

Log:
  Prefix hex memory addresses with 0x in diagnostic messages from the
  SRAT parser.
  
  Submitted by:	Oliver Pinter
  MFC after:	1 week
  Differential revision:	https://reviews.freebsd.org/D8750

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

Modified: head/sys/x86/acpica/srat.c
==============================================================================
--- head/sys/x86/acpica/srat.c	Sun Dec 11 18:42:17 2016	(r309853)
+++ head/sys/x86/acpica/srat.c	Sun Dec 11 19:01:27 2016	(r309854)
@@ -229,7 +229,7 @@ srat_parse_entry(ACPI_SUBTABLE_HEADER *e
 		mem = (ACPI_SRAT_MEM_AFFINITY *)entry;
 		if (bootverbose)
 			printf(
-		    "SRAT: Found memory domain %d addr %jx len %jx: %s\n",
+		    "SRAT: Found memory domain %d addr 0x%jx len 0x%jx: %s\n",
 			    mem->ProximityDomain, (uintmax_t)mem->BaseAddress,
 			    (uintmax_t)mem->Length,
 			    (mem->Flags & ACPI_SRAT_MEM_ENABLED) ?
@@ -238,7 +238,7 @@ srat_parse_entry(ACPI_SUBTABLE_HEADER *e
 			break;
 		if (!overlaps_phys_avail(mem->BaseAddress,
 		    mem->BaseAddress + mem->Length)) {
-			printf("SRAT: Ignoring memory at addr %jx\n",
+			printf("SRAT: Ignoring memory at addr 0x%jx\n",
 			    (uintmax_t)mem->BaseAddress);
 			break;
 		}
@@ -335,7 +335,7 @@ check_phys_avail(void)
 				address = mem_info[i].end + 1;
 		}
 	}
-	printf("SRAT: No memory region found for %jx - %jx\n",
+	printf("SRAT: No memory region found for 0x%jx - 0x%jx\n",
 	    (uintmax_t)phys_avail[j], (uintmax_t)phys_avail[j + 1]);
 	return (ENXIO);
 }


More information about the svn-src-all mailing list