Skip to content

Commit 5f76d42

Browse files
xiaobo55xpalmer-dabbelt
authored andcommitted
ACPI: NUMA: replace pr_info with pr_debug in arch_acpi_numa_init
There are lots of ACPI enabled systems that aren't NUMA and If the firmware didn't provide the SRAT/SLIT, then there will be a message "Failed to initialise from firmware" from arch_acpi_numa_init() which adding noise to the boot on all of those kind of systems. Replace the pr_info with pr_debug in arch_acpi_numa_init() to avoid it. Suggested-by: Sunil V L <sunilvl@ventanamicro.com> Signed-off-by: Haibo Xu <haibo1.xu@intel.com> Reviewed-by: Sunil V L <sunilvl@ventanamicro.com> Reviewed-by: Hanjun Guo <guohanjun@huawei.com> Link: https://lore.kernel.org/r/109354315a02cd22145d2effa4a8c571b69d3e56.1718268003.git.haibo1.xu@intel.com Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
1 parent adc3e82 commit 5f76d42

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/base/arch_numa.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ static int __init arch_acpi_numa_init(void)
445445

446446
ret = acpi_numa_init();
447447
if (ret) {
448-
pr_info("Failed to initialise from firmware\n");
448+
pr_debug("Failed to initialise from firmware\n");
449449
return ret;
450450
}
451451

0 commit comments

Comments
 (0)