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.

Merge tag 'acpi-5.1-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull ACPI fix from Rafael Wysocki:
"This corrects a previous attempt to make Linux use its own set of ACPI
debug flags different from the upstream ACPICA's default (Erik
Schmauss)"

* tag 'acpi-5.1-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI: use different default debug value than ACPICA

+8 -3
-3
drivers/acpi/bus.c
··· 1043 1043 1044 1044 acpi_permanent_mmap = true; 1045 1045 1046 - /* Initialize debug output. Linux does not use ACPICA defaults */ 1047 - acpi_dbg_level = ACPI_LV_INFO | ACPI_LV_REPAIR; 1048 - 1049 1046 #ifdef CONFIG_X86 1050 1047 /* 1051 1048 * If the machine falls into the DMI check table,
+3
include/acpi/acoutput.h
··· 150 150 151 151 /* Defaults for debug_level, debug and normal */ 152 152 153 + #ifndef ACPI_DEBUG_DEFAULT 153 154 #define ACPI_DEBUG_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT | ACPI_LV_EVALUATION | ACPI_LV_REPAIR) 155 + #endif 156 + 154 157 #define ACPI_NORMAL_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT | ACPI_LV_REPAIR) 155 158 #define ACPI_DEBUG_ALL (ACPI_LV_AML_DISASSEMBLE | ACPI_LV_ALL_EXCEPTIONS | ACPI_LV_ALL) 156 159
+5
include/acpi/platform/aclinux.h
··· 82 82 #define ACPI_NO_ERROR_MESSAGES 83 83 #undef ACPI_DEBUG_OUTPUT 84 84 85 + /* Use a specific bugging default separate from ACPICA */ 86 + 87 + #undef ACPI_DEBUG_DEFAULT 88 + #define ACPI_DEBUG_DEFAULT (ACPI_LV_INFO | ACPI_LV_REPAIR) 89 + 85 90 /* External interface for __KERNEL__, stub is needed */ 86 91 87 92 #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \