From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1764298AbYF3Tfu (ORCPT ); Mon, 30 Jun 2008 15:35:50 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1762370AbYF3Tfb (ORCPT ); Mon, 30 Jun 2008 15:35:31 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:56185 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761471AbYF3Tf3 (ORCPT ); Mon, 30 Jun 2008 15:35:29 -0400 Date: Mon, 30 Jun 2008 12:34:54 -0700 From: Andrew Morton To: "Justin Mattock" Cc: linux-kernel@vger.kernel.org, rjw@sisk.pl, linux-acpi@vger.kernel.org, Alexey Starikovskiy Subject: Re: GPE storm detected, disabling EC GPE Message-Id: <20080630123454.7f48b7e0.akpm@linux-foundation.org> In-Reply-To: References: X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.20; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 5 Jun 2008 21:01:55 +0000 "Justin Mattock" wrote: > FWIW I noticed a post where the person had changed 5 to 20, and it > seemed to work for them; > So with that in mind I decide to give that a go, here is the location: > drivers/acpi/ec.c > @@ -527,47 +488,51 @@ static u32 acpi_ec_gpe_handler(void *data) > { > acpi_status status = AE_OK; > struct acpi_ec *ec = data; > u8 state = acpi_ec_read_status(ec); > > pr_debug(PREFIX "~~~> interrupt\n"); > atomic_inc(&ec->irq_count); > - if (atomic_read(&ec->irq_count) > 5) { > + if (atomic_read(&ec->irq_count) > 20) { > pr_err(PREFIX "GPE storm detected, disabling EC GPE\n"); > ec_switch_to_poll_mode(ec); > goto end; > } > > Now I don't know if this will work for other brands, but for > me(Macbook Pro ATI chipset) I have not received the > GPE storm detected, disabling EC GPE message, but it's only been an > hour, maybe after two or three this might appear. > Also is this good or bad to set 5 to 20 for the system? > regards; We've had a few reports of this GPE-storm problem and I've rather lost track of what's happening. Has anyone looked into it? If not, do we have a bugzilla report where we can work on this? Thanks.