Bug 16135
Summary: | [BUG] kacpi_notify goes into an infinite loop (luckly it calls cond_resched) | ||
---|---|---|---|
Product: | ACPI | Reporter: | Maciej Rutecki (maciej.rutecki) |
Component: | Power-Thermal | Assignee: | acpi_power-thermal |
Status: | CLOSED INSUFFICIENT_DATA | ||
Severity: | normal | CC: | maciej.rutecki, rjw, rostedt, rui.zhang, trenn |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 2.6.34 | Subsystem: | |
Regression: | Yes | Bisected commit-id: | |
Bug Depends on: | |||
Bug Blocks: | 15310 |
Description
Maciej Rutecki
2010-06-06 05:41:33 UTC
Please attach acpidump and dmidecode output. You may already want to double check whether ACPI_DEBUG is compiled into your kernel (zcat /proc/config.gz |grep CONFIG_ACPI_DEBUG). If it is it might make sense to remove some ACPI drivers: rmmod battery;rmmod ac (ar some polling candidates) and increase debug level/layer shortly while this happens: echo 0xFFFFFFFF >/sys/module/acpi/parameters/debug_layer echo 0xF >/sys/module/acpi/parameters/debug_level (or even: echo 0x20F >/sys/module/acpi/parameters/debug_level which may show quite some output). Hmm, best you start this tiny script when this happens (untested may have a typo): =============== #!/bin/bash logger "START ACPI LOGGING" echo 0xFFFFFFFF >/sys/module/acpi/parameters/debug_layer echo 0x20F >/sys/module/acpi/parameters/debug_level sleep 1 echo 0 >/sys/module/acpi/parameters/debug_layer echo 0xF >/sys/module/acpi/parameters/debug_level logger "STOP ACPI LOGGING" =============== and send syslog output between START and STOP message. please verify if the patches at https://bugzilla.kernel.org/show_bug.cgi?id=15924#c45 helps. ping... close this bug as there is no response from bug reporter, neither in bugzilla nor in mail list. |