http://bugzilla.kernel.org/show_bug.cgi?id=5989





------- Additional Comments From [EMAIL PROTECTED]  2006-03-24 19:20 -------
>Here are the dmesgs from the first cycle, which shows the Debug still
>showing late:
It should be due to kacpid preempted the execution of acpi_leave_sleep_state.

Let continue hack with:
chage 2. in acpi_pm_finish:
Right after: 
        arg.integer.value = ACPI_SST_WORKING;
        status = acpi_evaluate_object (NULL, METHOD_NAME__SST, &arg_list, 
NULL);
        if (ACPI_FAILURE (status) && status != AE_NOT_FOUND) {
                ACPI_REPORT_ERROR (("Method _SST failed, %s\n",
                        acpi_format_exception (status)));
        }
insert: acpi_in_suspend =NO

6. in acpi_thermal_check,
just before: acpi_thermal_get_temperature(tz)
  insert: 
if (acpi_in_suspend == YES)
  return_VOID;

Let's check if acpi_leave_sleep_state won't be preempted, and exuection 
sequence is like:

_SST
_WAK
_SST



------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
acpi-bugzilla mailing list
acpi-bugzilla@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to