All of lore.kernel.org
 help / color / mirror / Atom feed
From: Johannes Stezenbach <js@sig21.net>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org, Dave Jones <davej@redhat.com>,
	Pavel Machek <pavel@ucw.cz>,
	ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
	Len Brown <lenb@kernel.org>,
	Venki Pallipadi <venkatesh.pallipadi@intel.com>,
	Arjan van de Ven <arjan@infradead.org>,
	Thomas Gleixner <tglx@linutronix.de>
Subject: Re: 2.6.30: hibernation/swsusp lockup due to acpi-cpufreq
Date: Tue, 16 Jun 2009 16:22:17 +0200	[thread overview]
Message-ID: <20090616142217.GA5548@sig21.net> (raw)
In-Reply-To: <200906160216.29537.rjw@sisk.pl>

On Tue, Jun 16, 2009 at 02:16:28AM +0200, Rafael J. Wysocki wrote:
> On Tuesday 16 June 2009, Johannes Stezenbach wrote:
> > 
> > on my aging Thinkpad T42p resume from hibernation
> > fails in 2.6.30. There is a backtrace on suspend prior
> > to writing out the disk image, but I cannot capture
> > it due to lack of a serial port on the T42p. On
> > resume the machine is dead after reading the image
> > from disk.
> > 
> > I've bisected this to:
> > 
> >  commit 01599fca6758d2cd133e78f87426fc851c9ea725
> >  Author: Andrew Morton <akpm@linux-foundation.org>
> >  Date:   Mon Apr 13 10:27:49 2009 -0700
> > 
> >     cpufreq: use smp_call_function_[single|many]() in acpi-cpufreq.c
> > 
> > I see in git log that this commit is known broken, but the
> > resume on my machine is still broken in 2.6.30.
> > 
> > If I disable CONFIG_X86_ACPI_CPUFREQ suspend/resume works in 2.6.30.
> 
> Thanks a lot for bisecting this!
> 
> Is it the reason for the enabling of interrupts during cpufreq_suspend()?
> 
> /me wonders
> 
> Is there anything we can do to fix this quickly?

I think your guess was right. The patch below fixes the
problem for me (hang after resume and backtrace on suspend).


Johannes
-----------------------------

Fix swsusp failure on !SMP

Commit 01599fca6758d2cd133e78f87426fc851c9ea725 introduced
a regression which caused a backtrace on suspend and
a hang on resume on a Thinkpad T42p (Pentium M CPU).

Signed-off-by: Johannes Stezenbach <js@sig21.net>


--- linux-2.6.30/kernel/up.c.orig	2009-06-16 15:56:28.000000000 +0200
+++ linux-2.6.30/kernel/up.c	2009-06-16 15:57:27.000000000 +0200
@@ -10,11 +10,13 @@
 int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
 				int wait)
 {
+	unsigned long flags;
+
 	WARN_ON(cpu != 0);
 
-	local_irq_disable();
+	local_irq_save(flags);
 	(func)(info);
-	local_irq_enable();
+	local_irq_restore(flags);
 
 	return 0;
 }

  reply	other threads:[~2009-06-16 14:22 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-15 23:27 2.6.30: hibernation/swsusp lockup due to acpi-cpufreq Johannes Stezenbach
2009-06-16  0:16 ` Rafael J. Wysocki
2009-06-16 14:22   ` Johannes Stezenbach [this message]
2009-06-16 18:55     ` Andrew Morton
2009-06-16 19:57       ` Johannes Stezenbach
2009-06-16 20:25         ` Pallipadi, Venkatesh
2009-06-16 20:40           ` Johannes Stezenbach
2009-06-16 21:09             ` Andrew Morton
2009-06-16 21:18               ` Pallipadi, Venkatesh
2009-06-16 21:39                 ` Rafael J. Wysocki
2009-06-16 22:44               ` Johannes Stezenbach
2009-06-16 20:44           ` Johannes Stezenbach
  -- strict thread matches above, loose matches on Subject: below --
2009-07-04  2:32 mfwitten
     [not found] <cNtMS-6Iq-11@gated-at.bofh.it>
     [not found] ` <cNuzd-7VN-3@gated-at.bofh.it>
     [not found]   ` <cNHPT-3kB-1@gated-at.bofh.it>
     [not found]     ` <cNM3f-1ty-29@gated-at.bofh.it>
     [not found]       ` <cNMZg-2ZR-17@gated-at.bofh.it>
     [not found]         ` <cNNsg-3U5-3@gated-at.bofh.it>
     [not found]           ` <cNNLx-4kf-5@gated-at.bofh.it>
     [not found]             ` <cNOeG-5cB-23@gated-at.bofh.it>
     [not found]               ` <cNOok-5pJ-11@gated-at.bofh.it>
     [not found]                 ` <cNOy0-5C5-23@gated-at.bofh.it>
2009-07-04 18:09                   ` Michael Witten
2009-07-04 21:29                     ` Rafael J. Wysocki
2009-07-06 21:20                       ` Pallipadi, Venkatesh
2009-07-06 21:39                         ` Rafael J. Wysocki
2009-07-06 22:16                           ` Pallipadi, Venkatesh

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=20090616142217.GA5548@sig21.net \
    --to=js@sig21.net \
    --cc=akpm@linux-foundation.org \
    --cc=arjan@infradead.org \
    --cc=davej@redhat.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pavel@ucw.cz \
    --cc=rjw@sisk.pl \
    --cc=tglx@linutronix.de \
    --cc=venkatesh.pallipadi@intel.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.