From: "Srivatsa S. Bhat" <srivatsa.bhat@linux.vnet.ibm.com>
To: lenb@kernel.org
Cc: "Srivatsa S. Bhat" <srivatsa.bhat@linux.vnet.ibm.com>,
venki@google.com, suresh.b.siddha@intel.com, bp@amd64.org,
tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
x86@kernel.org, ben@decadent.org.uk,
linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org,
deepthi@linux.vnet.ibm.com,
Daniel Lezcano <daniel.lezcano@linaro.org>,
amit.kucheria@linaro.org
Subject: Re: [PATCH] x86: Make mwait_usable() respect "idle=nomwait" kernel parameter
Date: Tue, 03 Apr 2012 17:19:30 +0530 [thread overview]
Message-ID: <4F7AE3CA.7080201@linux.vnet.ibm.com> (raw)
In-Reply-To: <20120402140645.6283.21190.stgit@srivatsabhat.in.ibm.com>
On 04/02/2012 07:36 PM, Srivatsa S. Bhat wrote:
> mwait_usable() returns 1 even if the "idle=nomwait" kernel parameter is passed.
> Fix it by adding a check for boot_option_idle_override == IDLE_NOMWAIT and
> returning 0 if it is set.
>
> Before applying the patch (dmesg snippet):
> [ 0.000000] Command line: [...] idle=nomwait
> [ 0.000000] Kernel command line: [...] idle=nomwait
> [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
> [ 0.140606] using mwait in idle threads. <======= mwait being used
> [ 4.303986] cpuidle: using governor ladder
> [ 4.308232] cpuidle: using governor menu
>
> After applying the patch:
> [ 0.000000] Command line: [...] idle=nomwait
> [ 0.000000] Kernel command line: [...] idle=nomwait
> [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
> [ 4.264100] cpuidle: using governor ladder
> [ 4.268342] cpuidle: using governor menu
>
> Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
> ---
>
> arch/x86/kernel/process.c | 3 +++
> 1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
> index a33afaa..945fbf0 100644
> --- a/arch/x86/kernel/process.c
> +++ b/arch/x86/kernel/process.c
> @@ -621,6 +621,9 @@ int mwait_usable(const struct cpuinfo_x86 *c)
> if (boot_option_idle_override == IDLE_FORCE_MWAIT)
> return 1;
>
> + if (boot_option_idle_override == IDLE_NOMWAIT)
> + return 0;
> +
> if (c->cpuid_level < MWAIT_INFO)
> return 0;
>
>
I realized that actually more stuff is broken than what the above patch fixes.
So here is the updated patch:
---
From: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Subject: [v2] x86: Make mwait_usable() heed to "idle=" kernel parameters properly
The checks that exist in mwait_usable() for "idle=" kernel parameters
are insufficient. As a result, mwait_usable() can return 1 even if
"idle=nomwait" or "idle=poll" or "idle=halt" parameters are passed.
Of these cases, incorrect handling of idle=nomwait is a universal problem
since mwait can get used for usual CPU idling. However the rest of the
cases are problematic only during CPU Hotplug (offline) because, in the
CPU offline path, the function mwait_play_dead() is called, which might
result in mwait being used in the offline CPUs, if mwait_usable() happens
to return 1.
Fix these issues by checking for the boot time "idle=" kernel parameter
properly in mwait_usable().
The first issue (usual cpu idling) is demonstrated below:
Before applying the patch (dmesg snippet):
[ 0.000000] Command line: [...] idle=nomwait
[ 0.000000] Kernel command line: [...] idle=nomwait
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.140606] using mwait in idle threads. <======= mwait being used
[ 4.303986] cpuidle: using governor ladder
[ 4.308232] cpuidle: using governor menu
After applying the patch:
[ 0.000000] Command line: [...] idle=nomwait
[ 0.000000] Kernel command line: [...] idle=nomwait
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 4.264100] cpuidle: using governor ladder
[ 4.268342] cpuidle: using governor menu
Signed-off-by: Deepthi Dharwar <deepthi@linux.vnet.ibm.com>
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
---
arch/x86/kernel/process.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
index a33afaa..b526c4e 100644
--- a/arch/x86/kernel/process.c
+++ b/arch/x86/kernel/process.c
@@ -618,9 +618,17 @@ int mwait_usable(const struct cpuinfo_x86 *c)
{
u32 eax, ebx, ecx, edx;
+ /* Use mwait if idle=mwait boot option is given */
if (boot_option_idle_override == IDLE_FORCE_MWAIT)
return 1;
+ /*
+ * Any idle= boot option other than idle=mwait means that we must not
+ * use mwait. Eg: idle=halt or idle=poll or idle=nomwait
+ */
+ if (boot_option_idle_override != IDLE_NO_OVERRIDE)
+ return 0;
+
if (c->cpuid_level < MWAIT_INFO)
return 0;
prev parent reply other threads:[~2012-04-03 11:50 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-02 14:06 [PATCH] x86: Make mwait_usable() respect "idle=nomwait" kernel parameter Srivatsa S. Bhat
2012-04-03 11:49 ` Srivatsa S. Bhat [this message]
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=4F7AE3CA.7080201@linux.vnet.ibm.com \
--to=srivatsa.bhat@linux.vnet.ibm.com \
--cc=amit.kucheria@linaro.org \
--cc=ben@decadent.org.uk \
--cc=bp@amd64.org \
--cc=daniel.lezcano@linaro.org \
--cc=deepthi@linux.vnet.ibm.com \
--cc=hpa@zytor.com \
--cc=lenb@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=suresh.b.siddha@intel.com \
--cc=tglx@linutronix.de \
--cc=venki@google.com \
--cc=x86@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.