Skip to content

Commit f98da1d

Browse files
djbwrafaeljw
authored andcommitted
ACPI: tables: Quiet ACPI table not found warning
Paul reports that the ACPI core complains on every boot about a missing CEDT table. Unlike the standard NUMA tables (SRAT, MADT, and SLIT) that are critical to NUMA init, CEDT is only expected on CXL platforms. Given the notice is not actionable lower its severity to debug. Link: https://lore.kernel.org/r/55f5c077-061c-7e53-b02d-53dde1dd654f@molgen.mpg.de Fixes: fd49f99 ("ACPI: NUMA: Add a node and memblk for each CFMWS not in SRAT") Reported-by: Paul Menzel <pmenzel@molgen.mpg.de> Signed-off-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent 754e0b0 commit f98da1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/acpi/tables.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ int __init_or_acpilib acpi_table_parse_entries_array(
400400

401401
acpi_get_table(id, instance, &table_header);
402402
if (!table_header) {
403-
pr_warn("%4.4s not present\n", id);
403+
pr_debug("%4.4s not present\n", id);
404404
return -ENODEV;
405405
}
406406

0 commit comments

Comments
 (0)