From: Peter Zijlstra <peterz@infradead.org>
To: Luming Yu <luming.yu@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>, Len Brown <lenb@kernel.org>
Subject: Re: [PATCH] a patch to fix the cpu-offline-online problem caused by pm_idle
Date: Mon, 24 Jan 2011 19:41:32 +0100 [thread overview]
Message-ID: <1295894492.28776.470.camel@laptop> (raw)
In-Reply-To: <AANLkTinaOQpuJis5HgK316ANxpDS8eZ8Q0S4a44POrp0@mail.gmail.com>
On Mon, 2011-01-24 at 02:34 -0500, Luming Yu wrote:
> Hi there,
>
> I've seen many problems caused by deep-c-state-capable pm_idle on a
> NHM-EX system with this test script
> # for i in `seq 1 1000`; do echo $i; echo 0 >
> /sys/devices/system/cpu/cpu59/online ; sleep 1; echo 1 >
> /sys/devices/system/cpu/cpu59/online; done
>
> As the bug " CPU online/offline causes system slowdown"
> https://bugzilla.redhat.com/show_bug.cgi?id=586551 described.
>
> The simplest and easiest and cleanest way I can think of now is as the
> patch attached.
>
> Signed-off-by: Yu Luming <luming.yu@intel.com>
>
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index c75fcdd..d419eb3 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -135,6 +135,7 @@ int __ref register_cpu_notifier(struct notifier_block *nb)
>
> #ifdef CONFIG_HOTPLUG_CPU
>
> +static void (*pm_idle_saved) (void) __read_mostly;
> EXPORT_SYMBOL(register_cpu_notifier);
>
> void __ref unregister_cpu_notifier(struct notifier_block *nb)
> @@ -145,6 +146,19 @@ void __ref unregister_cpu_notifier(struct
> notifier_block *nb)
> }
> EXPORT_SYMBOL(unregister_cpu_notifier);
>
> +static inline void save_pm_idle(void)
> +{
> + pm_idle_saved = pm_idle;
> + pm_idle = default_idle;
> + cpu_idle_wait();
> +}
> +
> +static inline void restore_pm_idle(void)
> +{
> + pm_idle = pm_idle_saved;
> + cpu_idle_wait();
> +}
> +
> static inline void check_for_tasks(int cpu)
> {
> struct task_struct *p;
> @@ -278,7 +292,9 @@ int __ref cpu_down(unsigned int cpu)
> goto out;
> }
>
> + save_pm_idle();
> err = _cpu_down(cpu, 0);
> + restore_pm_idle();
>
> out:
> cpu_maps_update_done();
> @@ -376,7 +392,9 @@ int __cpuinit cpu_up(unsigned int cpu)
> goto out;
> }
>
> + save_pm_idle();
> err = _cpu_up(cpu, 0);
> + restore_pm_idle();
>
> out:
> cpu_maps_update_done();
Ow god this is ugly.. pm_idle should die asap, not find it way into generic code, so NAK!
next prev parent reply other threads:[~2011-01-24 18:40 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-24 7:34 [PATCH] a patch to fix the cpu-offline-online problem caused by pm_idle Luming Yu
2011-01-24 18:41 ` Peter Zijlstra [this message]
2011-01-25 1:59 ` Luming Yu
2011-01-25 9:12 ` Peter Zijlstra
2011-01-26 6:42 ` Luming Yu
2011-01-28 10:30 ` Peter Zijlstra
2011-01-29 5:44 ` Luming Yu
2011-01-30 16:36 ` Peter Zijlstra
2011-01-31 3:26 ` Luming Yu
2011-01-31 10:16 ` Peter Zijlstra
2011-01-31 14:10 ` Luming Yu
2011-01-31 14:17 ` Peter Zijlstra
2011-01-31 10:48 ` Peter Zijlstra
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=1295894492.28776.470.camel@laptop \
--to=peterz@infradead.org \
--cc=lenb@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luming.yu@gmail.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.