We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3fe2c7 commit 3555798Copy full SHA for 3555798
drivers/acpi/numa.c
@@ -147,9 +147,9 @@ acpi_table_print_srat_entry(struct acpi_subtable_header *header)
147
{
148
struct acpi_srat_mem_affinity *p =
149
(struct acpi_srat_mem_affinity *)header;
150
- pr_debug("SRAT Memory (0x%lx length 0x%lx) in proximity domain %d %s%s%s\n",
151
- (unsigned long)p->base_address,
152
- (unsigned long)p->length,
+ pr_debug("SRAT Memory (0x%llx length 0x%llx) in proximity domain %d %s%s%s\n",
+ (unsigned long long)p->base_address,
+ (unsigned long long)p->length,
153
p->proximity_domain,
154
(p->flags & ACPI_SRAT_MEM_ENABLED) ?
155
"enabled" : "disabled",
0 commit comments