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


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |REJECTED
         Resolution|                            |UNREPRODUCIBLE




------- Comment #3 from [EMAIL PROTECTED]  2008-06-12 13:59 -------
acpi_status acpi_os_read_port(acpi_io_address port, u32 * value, u32 width)
{
        u32 dummy;

        if (!value)
                value = &dummy;

        *value = 0;
        if (width <= 8) {
                *(u8 *) value = inb(port);
        } else if (width <= 16) {
                *(u16 *) value = inw(port);
        } else if (width <= 32) {
                *(u32 *) value = inl(port);
        } else {
460:             BUG();
        }

        return AE_OK;
}

Strange, that means we are being called to read an IO port
of width > 32 bits.

acpi_os_read_port() is unchanged since the (working) 2.6.24,
so something else above must have changed.

If the machine comes back to life, in addition to acquiring
the acpidump output, it would be good to try
"processor.max_cstate=2" and if that doesn't work then
boot with "idle=poll" and make sure the system is at least
sane in that basic configuration.
Then try building build with CONFIG_CPU_IDLE=n

closing as unreproducible now, if the machine comes back to life,
please re-open.  note that sometimes removing the AC and the
battery can wake a machine that has permanently fallen asleep.


-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
acpi-bugzilla mailing list
acpi-bugzilla@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to