https://bugzilla.kernel.org/show_bug.cgi?id=13195


Rafael J. Wysocki <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]




--- Comment #48 from Rafael J. Wysocki <[email protected]>  2010-04-08 23:52:15 ---
Well, I'm not sure if this is not too optimistic:

+    if (system_state == SYSTEM_RUNNING)
+        schedule_timeout_interruptible(msecs_to_jiffies(ms));

It changes the behavior in all system states other than RUNNING and on all
systems, while as far as I can say the problem only happens during boot on one
system.  So, it seems like this would be a bit safer:

+    if (system_state == SYSTEM_BOOTING)
+        acpi_os_stall(ms * 1000);
+    else
+        schedule_timeout_interruptible(msecs_to_jiffies(ms));

-- 
Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
acpi-bugzilla mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to