ACPI: SRAT: report non-volatile memory in debug
Just as with the other memory affinity flags, report non-volatile memory with ACPI debug. Signed-off-by: Davidlohr Bueso <davidlohr.bueso@hp.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
33f767d767
commit
208f6cc9e5
@ -116,14 +116,16 @@ acpi_table_print_srat_entry(struct acpi_subtable_header *header)
|
|||||||
struct acpi_srat_mem_affinity *p =
|
struct acpi_srat_mem_affinity *p =
|
||||||
(struct acpi_srat_mem_affinity *)header;
|
(struct acpi_srat_mem_affinity *)header;
|
||||||
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
|
||||||
"SRAT Memory (0x%lx length 0x%lx) in proximity domain %d %s%s\n",
|
"SRAT Memory (0x%lx length 0x%lx) in proximity domain %d %s%s%s\n",
|
||||||
(unsigned long)p->base_address,
|
(unsigned long)p->base_address,
|
||||||
(unsigned long)p->length,
|
(unsigned long)p->length,
|
||||||
p->proximity_domain,
|
p->proximity_domain,
|
||||||
(p->flags & ACPI_SRAT_MEM_ENABLED)?
|
(p->flags & ACPI_SRAT_MEM_ENABLED)?
|
||||||
"enabled" : "disabled",
|
"enabled" : "disabled",
|
||||||
(p->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE)?
|
(p->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE)?
|
||||||
" hot-pluggable" : ""));
|
" hot-pluggable" : "",
|
||||||
|
(p->flags & ACPI_SRAT_MEM_NON_VOLATILE)?
|
||||||
|
" non-volatile" : ""));
|
||||||
}
|
}
|
||||||
#endif /* ACPI_DEBUG_OUTPUT */
|
#endif /* ACPI_DEBUG_OUTPUT */
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user