All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Hellstrom <daniel@gaisler.com>
To: sparclinux@vger.kernel.org
Subject: Re: [PATCH] sparc32,leon: SMP power down implementation
Date: Tue, 26 Apr 2011 07:53:31 +0000	[thread overview]
Message-ID: <4DB679FB.5010309@gaisler.com> (raw)
In-Reply-To: <1303804097-488-1-git-send-email-daniel@gaisler.com>

Daniel Hellstrom wrote:

>Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
>---
> arch/sparc/kernel/process_32.c |   12 ++++++++++--
> 1 files changed, 10 insertions(+), 2 deletions(-)
>
>diff --git a/arch/sparc/kernel/process_32.c b/arch/sparc/kernel/process_32.c
>index 1752929..c8cc461 100644
>--- a/arch/sparc/kernel/process_32.c
>+++ b/arch/sparc/kernel/process_32.c
>@@ -128,8 +128,16 @@ void cpu_idle(void)
>         set_thread_flag(TIF_POLLING_NRFLAG);
> 	/* endless idle loop with no priority at all */
> 	while(1) {
>-		while (!need_resched())
>-			cpu_relax();
>+#ifdef CONFIG_SPARC_LEON
>+		if (pm_idle) {
>+			while (!need_resched())
>+				(*pm_idle)();
>+		} else
>+#endif
>+		{
>+			while (!need_resched())
>+				cpu_relax();
>+		}
>  
>

I have made this CONFIG_SPARC_LEON because I'm not sure if other SMP 
SPARC32 supports the pmc idle. One can see from row 109 above that in 
single-processor pmc_idle() is called in the same mannor, however no for 
SMP... perhaps it is a meaning with that? I don't want to break 
anything, if you think is shuold not be ifdeffed I will remove it and 
repost.

Daniel

  reply	other threads:[~2011-04-26  7:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-26  7:48 [PATCH] sparc32,leon: SMP power down implementation Daniel Hellstrom
2011-04-26  7:53 ` Daniel Hellstrom [this message]
2011-05-16 20:04 ` David Miller

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=4DB679FB.5010309@gaisler.com \
    --to=daniel@gaisler.com \
    --cc=sparclinux@vger.kernel.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 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.