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

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED



------- Additional Comments From [EMAIL PROTECTED]  2007-03-08 21:21 -------
akpm told us not to use system_state,
so as of 2.6.18 we went with the original suggestion of using GFP_ATOMIC.

Re: comment #38
acpi_evaluate_integer() in utils.c now looks like this:
kzalloc(sizeof(union acpi_object), irqs_disabled() ? GFP_ATOMIC: GFP_KERNEL);

acpi_os_wait_semaphore() in osl.c now starts with this:
        /*
         * This can be called during resume with interrupts off.
         * Like boot-time, we should be single threaded and will
         * always get the lock if we try -- timeout or not.
         * If this doesn't succeed, then we will oops courtesy of
         * might_sleep() in down().
         */
        if (!down_trylock(sem))
                return AE_OK;

---
closed.

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

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
acpi-bugzilla mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to