Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

correct console log level when ERST ACPI table is not found

When booting 2.6.35-rc3 on a x86 system without an ERST ACPI table with
the 'quiet' option, we still observe an "ERST: Table is not found!"
warning.

Quiesce it to the same info log level as the other 'table not found'
warnings.

Signed-off-by: Daniel J Blueman <daniel.blueman@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Daniel J Blueman and committed by
Linus Torvalds
980533b0 985b823b

+1 -1
+1 -1
drivers/acpi/apei/erst.c
··· 781 781 status = acpi_get_table(ACPI_SIG_ERST, 0, 782 782 (struct acpi_table_header **)&erst_tab); 783 783 if (status == AE_NOT_FOUND) { 784 - pr_err(ERST_PFX "Table is not found!\n"); 784 + pr_info(ERST_PFX "Table is not found!\n"); 785 785 goto err; 786 786 } else if (ACPI_FAILURE(status)) { 787 787 const char *msg = acpi_format_exception(status);