From: Pavel Machek <pavel@suse.cz>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
pm list <linux-pm@lists.linux-foundation.org>,
Alexey Starikovskiy <astarikovskiy@suse.de>,
Johannes Berg <johannes@sipsolutions.net>
Subject: Re: suspend slow in 2.6.25-rc6 (was Re: Suspend and hibernation patchset against -rc6)
Date: Wed, 19 Mar 2008 00:20:38 +0100 [thread overview]
Message-ID: <20080318232037.GA1670@elf.ucw.cz> (raw)
In-Reply-To: <alpine.LFD.1.00.0803181028400.3020@woody.linux-foundation.org>
On Tue 2008-03-18 10:31:28, Linus Torvalds wrote:
>
>
> On Tue, 18 Mar 2008, Pavel Machek wrote:
> >
> > On Tue 2008-03-18 14:06:42, Pavel Machek wrote:
> > >
> > > Confirmed, suspend slowness is in 2.6.25-rc6, too. It takes 15 seconds
> > > to suspend/resume, while 2.6.24 takes 9. Thinkpad x60.
> >
> > IIRC 2.6.25-rc5 was "fast".
>
> Can you bisect it? There's only 343 commits between -rc5 and -rc6, so it
> should not take too long to check which commit it is. Even if it should
> take 9 reboots to bisect it entirely, going just five or six will likely
> narrow it down sufficiently that we can probably guess fairly well what
> it's about.
Slowdown is fixed by this patch:
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index e7e197e..caf873c 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -129,7 +129,6 @@ static struct acpi_ec {
struct mutex lock;
wait_queue_head_t wait;
struct list_head list;
- atomic_t irq_count;
u8 handlers_installed;
} *boot_ec, *first_ec;
@@ -182,8 +181,6 @@ static int acpi_ec_wait(struct acpi_ec *
{
int ret = 0;
- atomic_set(&ec->irq_count, 0);
-
if (unlikely(event == ACPI_EC_EVENT_OBF_1 &&
test_bit(EC_FLAGS_NO_OBF1_GPE, &ec->flags)))
force_poll = 1;
@@ -230,7 +227,6 @@ static int acpi_ec_wait(struct acpi_ec *
while (time_before(jiffies, delay)) {
if (acpi_ec_check_status(ec, event))
goto end;
- msleep(5);
}
}
pr_err(PREFIX "acpi_ec_wait timeout,"
@@ -533,13 +529,6 @@ static u32 acpi_ec_gpe_handler(void *dat
struct acpi_ec *ec = data;
pr_debug(PREFIX "~~~> interrupt\n");
- atomic_inc(&ec->irq_count);
- if (atomic_read(&ec->irq_count) > 5) {
- pr_err(PREFIX "GPE storm detected, disabling EC GPE\n");
- acpi_disable_gpe(NULL, ec->gpe, ACPI_ISR);
- clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
- return ACPI_INTERRUPT_HANDLED;
- }
clear_bit(EC_FLAGS_WAIT_GPE, &ec->flags);
if (test_bit(EC_FLAGS_GPE_MODE, &ec->flags))
wake_up(&ec->wait);
@@ -954,7 +943,11 @@ int __init acpi_ec_ecdt_probe(void)
boot_ec->command_addr = ecdt_ptr->control.address;
boot_ec->data_addr = ecdt_ptr->data.address;
boot_ec->gpe = ecdt_ptr->gpe;
- boot_ec->handle = ACPI_ROOT_OBJECT;
+ if (ACPI_FAILURE(acpi_get_handle(NULL, ecdt_ptr->id,
+ &boot_ec->handle))) {
+ pr_info("Failed to locate handle for boot EC\n");
+ boot_ec->handle = ACPI_ROOT_OBJECT;
+ }
} else {
/* This workaround is needed only on some broken machines,
* which require early EC, but fail to provide ECDT */
...so it seems to be "hello, Alexey!"
commit 2c81ce4c9c37b910210f2640c28e98a0c398dc26
tree e46ccf30836014d115e72791263697585f7943f6
parent 2f44bbb495dd3e6d0209eff2257438ab9c570e5b
author Alexey Starikovskiy <astarikovskiy@suse.de> Tue, 11 Mar 2008
13:30:00 -0400
committer Len Brown <len.brown@intel.com> Tue, 11 Mar 2008 13:30:00
-0400
ACPI: EC: Handle IRQ storm on Acer laptops
On some Acer systems, the HW fails to clear the GPE source,
causing an interrupt storm.
So in EC interrupt mode, we count how many interrupts we
receive when waiting. If we get more than 5, we give
up on interrupt mode and revert to polling mode.
Also, for polling mode to work on Acers, we need
to insert a delay.
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
pomozte zachranit klanovicky les: http://www.ujezdskystrom.info/
next prev parent reply other threads:[~2008-03-18 23:20 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200803120129.25585.rjw@sisk.pl>
2008-03-17 22:17 ` Suspend and hibernation patchset against -rc6 Rafael J. Wysocki
[not found] ` <200803172317.33745.rjw@sisk.pl>
2008-03-18 12:07 ` Pavel Machek
2008-03-18 13:06 ` suspend slow in 2.6.25-rc6 (was Re: Suspend and hibernation patchset against -rc6) Pavel Machek
[not found] ` <20080318130642.GA1609@elf.ucw.cz>
2008-03-18 13:07 ` Pavel Machek
[not found] ` <20080318130710.GB1609@elf.ucw.cz>
2008-03-18 17:07 ` Pavel Machek
2008-03-18 18:48 ` Alexey Starikovskiy
2008-03-18 23:00 ` Pavel Machek
2008-03-18 17:31 ` Linus Torvalds
2008-03-18 22:52 ` Pavel Machek
2008-03-18 23:05 ` Pavel Machek
2008-03-19 0:40 ` Linus Torvalds
2008-03-19 10:19 ` Pavel Machek
2008-03-19 14:42 ` Linus Torvalds
2008-03-19 20:24 ` Pavel Machek
2008-03-19 10:56 ` Pavel Machek
2008-03-19 11:48 ` Pavel Machek
2008-03-19 14:47 ` Linus Torvalds
2008-03-19 14:54 ` Pavel Machek
2008-03-19 20:23 ` Pavel Machek
2008-03-19 20:35 ` Alexey Starikovskiy
2008-03-19 20:47 ` Rafael J. Wysocki
2008-03-19 20:58 ` Pavel Machek
2008-03-19 21:07 ` Alexey Starikovskiy
2008-03-19 21:43 ` Rafael J. Wysocki
[not found] ` <200803192243.14520.rjw@sisk.pl>
2008-03-19 21:56 ` Rafael J. Wysocki
2008-03-19 21:57 ` Pavel Machek
[not found] ` <20080319215729.GF1811@elf.ucw.cz>
2008-03-19 21:58 ` Rafael J. Wysocki
[not found] ` <200803192259.00091.rjw@sisk.pl>
2008-03-19 22:02 ` Pavel Machek
[not found] ` <20080319220210.GG1811@elf.ucw.cz>
2008-03-19 22:13 ` Rafael J. Wysocki
[not found] ` <200803192313.39664.rjw@sisk.pl>
2008-03-19 22:21 ` Pavel Machek
2008-03-20 15:06 ` Henrique de Moraes Holschuh
[not found] ` <20080320150637.GC5615@khazad-dum.debian.net>
2008-03-20 15:53 ` Pavel Machek
2008-03-18 23:20 ` Pavel Machek [this message]
2008-03-18 23:45 ` Alexey Starikovskiy
2008-03-19 11:49 ` Pavel Machek
2008-03-20 15:19 ` Henrique de Moraes Holschuh
[not found] ` <20080320151931.GD5615@khazad-dum.debian.net>
2008-03-20 15:50 ` Alexey Starikovskiy
[not found] ` <47E287D4.3060906@gmail.com>
2008-03-20 22:26 ` Henrique de Moraes Holschuh
2008-03-18 23:43 ` Pavel Machek
2008-03-26 23:51 ` Suspend and hibernation patchset against -rc7 Rafael J. Wysocki
[not found] ` <200803270051.31778.rjw@sisk.pl>
2008-04-02 0:27 ` Suspend and hibernation patchset against -rc8 Rafael J. Wysocki
[not found] ` <200804020227.12943.rjw@sisk.pl>
2008-04-13 17:39 ` Suspend and hibernation patchset against -rc9 Rafael J. Wysocki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080318232037.GA1670@elf.ucw.cz \
--to=pavel@suse.cz \
--cc=astarikovskiy@suse.de \
--cc=johannes@sipsolutions.net \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox