public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
From: Pavel Machek <pavel-+ZI9xUNit7I@public.gmane.org>
To: Rusty Russell <rusty-8n+1lVoiYb80n/F98K4Iww@public.gmane.org>
Cc: ACPI mailing list
	<acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>,
	Andrew Grover
	<andrew.grover-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Subject: Re: ACPI sleep: check error values and disable it on SMP
Date: Tue, 10 Jun 2003 12:44:26 +0200	[thread overview]
Message-ID: <20030610104426.GB207@elf.ucw.cz> (raw)
In-Reply-To: <20030610043633.4C3F02C05E-w/Ol4Ecudpl8XjKLYN78aQ@public.gmane.org>

Hi!

> > Wakeup is hard to do on SMP, and freezer_processes is just not ready
> > to work on SMP machine. As I have no SMP (hint hint ;-), it is better
> > to disable it.
> > 
> > ACPI should really really check if freezing processes worked, and
> > handle failure. Please apply,
> 
> Gcc doesn't give any warnings about unreachable code?

I've just tested it, and no warnings are given.
								Pavel

> > --- linux-cvs.clean/drivers/acpi/sleep/main.c	2003-02-28 10:23:47.000000000 -0800
> > +++ linux-cvs/drivers/acpi/sleep/main.c	2003-06-08 14:39:03.000000000 -0700
> > @@ -214,6 +214,11 @@
> >  {
> >  	acpi_status status;
> >  
> > +#ifdef CONFIG_SMP
> > +	/* Suspend is hard to get right on SMP. */
> > +	return AE_ERROR;
> > +#endif
> > +
> >  	/* get out if state is invalid */
> >  	if (state < ACPI_STATE_S1 || state > ACPI_STATE_S5)
> >  		return AE_ERROR;
> > @@ -226,7 +231,10 @@
> >  	 * TBD: S1 can be done without device_suspend.  Make a CONFIG_XX
> >  	 * to handle however when S1 failed without device_suspend.
> >  	 */
> > -	freeze_processes();		/* device_suspend needs processes to be stopped */
> > +	if (freeze_processes()) {
> > +		thaw_processes();
> > +		return AE_ERROR;		/* device_suspend needs processes to be stopped */
> > +	}
> >  
> >  	/* do we have a wakeup address for S2 and S3? */
> >  	/* Here, we support only S4BIOS, those we set the wakeup address */
> > 

-- 
When do you have a heart between your knees?
[Johanka's followup: and *two* hearts?]


-------------------------------------------------------
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.

  parent reply	other threads:[~2003-06-10 10:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-06-08 20:38 ACPI sleep: check error values and disable it on SMP Pavel Machek
     [not found] ` <20030608203823.GA9415-I/5MKhXcvmPrBKCeMvbIDA@public.gmane.org>
2003-06-10  4:33   ` Rusty Russell
     [not found]     ` <20030610043633.4C3F02C05E-w/Ol4Ecudpl8XjKLYN78aQ@public.gmane.org>
2003-06-10 10:44       ` Pavel Machek [this message]
  -- strict thread matches above, loose matches on Subject: below --
2003-06-10 16:38 Grover, Andrew
     [not found] ` <F760B14C9561B941B89469F59BA3A847E96F42-sBd4vmA9Se4Lll3ZsUKC9FDQ4js95KgL@public.gmane.org>
2003-06-10 19:14   ` Pavel Machek

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=20030610104426.GB207@elf.ucw.cz \
    --to=pavel-+zi9xunit7i@public.gmane.org \
    --cc=acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    --cc=andrew.grover-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=rusty-8n+1lVoiYb80n/F98K4Iww@public.gmane.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