git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: "Michael S. Tsirkin" <mst@mellanox.co.il>
Cc: Daniel Walker <dwalker@mvista.com>,
	Michal Piotrowski <michal.k.k.piotrowski@gmail.com>,
	linux-pm@lists.osdl.org,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Adrian Bunk <bunk@stusta.de>, Pavel Machek <pavel@ucw.cz>,
	Jens Axboe <jens.axboe@oracle.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	git@vger.kernel.org
Subject: Re: 2.6.21-rc1: known regressions (part 2)
Date: Mon, 5 Mar 2007 17:41:33 +0100	[thread overview]
Message-ID: <20070305164133.GA2441@elte.hu> (raw)
In-Reply-To: <20070305161450.GA4972@mellanox.co.il>


* Michael S. Tsirkin <mst@mellanox.co.il> wrote:

> > Quoting Ingo Molnar <mingo@elte.hu>:
> >  git-bisect good      0539771d7236b425f285652f6f297cc7939c8f9a
> > 
> >  81450b73dde07f473a4a7208b209b4c8b7251d90 is first bad commit
> 
> I have confirmed these two on my system.

you could probably get quite a bit further in bisecting the other 
breakage, by using the following method:

manully apply the patch below to 81450b73dde and retest. It will most 
likely work. Then FIRST unapply the patch and mark the tree via 
'git-bisect good' and continue the bisection. Then try to apply the 
patch again. If it's already included - ignore the rejected patch. 
Whenever git-bisect offers you a new commit, just try to apply the 
patch. Ok? This way you'll be able to avoid the known ACPI breakage, and 
zoom in on the unknown breakage.

	Ingo

---------------->
commit f3ccb06f3b8e0cf42b579db21f3ca7f17fcc3f38
Author: Alexey Starikovskiy <alexey.y.starikovskiy@linux.intel.com>
Date:   Tue Feb 13 02:35:50 2007 -0500

    ACPI: Disable wake GPEs only once.
    
    fixes Suspend/Resume regressions due to recent ACPICA update.
    
    Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@linux.intel.com>
    Signed-off-by: Len Brown <len.brown@intel.com>

diff --git a/drivers/acpi/events/evgpe.c b/drivers/acpi/events/evgpe.c
index dfac3ec..635ba44 100644
--- a/drivers/acpi/events/evgpe.c
+++ b/drivers/acpi/events/evgpe.c
@@ -636,17 +636,6 @@ acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number)
 		}
 	}
 
-	if (!acpi_gbl_system_awake_and_running) {
-		/*
-		 * We just woke up because of a wake GPE. Disable any further GPEs
-		 * until we are fully up and running (Only wake GPEs should be enabled
-		 * at this time, but we just brute-force disable them all.)
-		 * 1) We must disable this particular wake GPE so it won't fire again
-		 * 2) We want to disable all wake GPEs, since we are now awake
-		 */
-		(void)acpi_hw_disable_all_gpes();
-	}
-
 	/*
 	 * Dispatch the GPE to either an installed handler, or the control method
 	 * associated with this GPE (_Lxx or _Exx). If a handler exists, we invoke

  reply	other threads:[~2007-03-05 16:42 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20070227102109.GG6745@elf.ucw.cz>
     [not found] ` <20070227103021.GA2250@kernel.dk>
     [not found]   ` <20070227103407.GA17819@elte.hu>
     [not found]     ` <20070227105922.GD2250@kernel.dk>
     [not found]       ` <20070227111515.GA4271@kernel.dk>
     [not found]         ` <20070301093450.GA8508@elte.hu>
     [not found]           ` <20070301104117.GA22788@elte.hu>
     [not found]             ` <20070301145204.GA25304@elte.hu>
     [not found]               ` <Pine.LNX.4.64.0703011536450.12485@woody.linux-foundation.org>
     [not found]                 ` <20070302072100.GB30634@elte.hu>
2007-03-02  8:04                   ` 2.6.21-rc1: known regressions (part 2) Ingo Molnar
2007-03-02 10:20                     ` Ingo Molnar
2007-03-02 10:22                       ` [patch] KVM: T60 resume fix Ingo Molnar
2007-03-02 11:39                         ` Michael S. Tsirkin
2007-03-03  8:22                           ` Avi Kivity
2007-03-03  8:21                         ` Avi Kivity
2007-03-03 11:57                           ` Andrew Morton
2007-03-05  8:22                           ` Ingo Molnar
2007-03-05 10:23                         ` Michael S. Tsirkin
2007-03-05 10:29                           ` Ingo Molnar
2007-03-02 16:36                       ` 2.6.21-rc1: known regressions (part 2) Linus Torvalds
2007-03-05 14:04                         ` Ingo Molnar
2007-03-05 15:44                     ` Michael S. Tsirkin
2007-03-05 16:14                     ` Michael S. Tsirkin
2007-03-05 16:41                       ` Ingo Molnar [this message]
2007-03-05 18:16                       ` Jens Axboe

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=20070305164133.GA2441@elte.hu \
    --to=mingo@elte.hu \
    --cc=akpm@linux-foundation.org \
    --cc=bunk@stusta.de \
    --cc=dwalker@mvista.com \
    --cc=git@vger.kernel.org \
    --cc=jens.axboe@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@lists.osdl.org \
    --cc=michal.k.k.piotrowski@gmail.com \
    --cc=mst@mellanox.co.il \
    --cc=pavel@ucw.cz \
    --cc=tglx@linutronix.de \
    --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;
as well as URLs for NNTP newsgroup(s).