From: Peter Zijlstra <peterz@infradead.org>
To: Chen Yu <yu.c.chen@intel.com>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>,
Daniel Lezcano <daniel.lezcano@linaro.org>,
Ingo Molnar <mingo@kernel.org>, Len Brown <len.brown@intel.com>,
linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH][RFC] PM / s2idle: Clear _TIF_POLLING_NRFLAG before suspend to idle
Date: Mon, 15 Jun 2020 20:40:41 +0200 [thread overview]
Message-ID: <20200615184041.GG2531@hirez.programming.kicks-ass.net> (raw)
In-Reply-To: <20200615173611.15349-1-yu.c.chen@intel.com>
On Tue, Jun 16, 2020 at 01:36:11AM +0800, Chen Yu wrote:
> Suspend to idle was found to not work on Goldmont CPU recently.
> And the issue was triggered due to:
>
> 1. On Goldmont the CPU in idle can only be woken up via IPIs,
> not POLL mode:
> Commit 08e237fa56a1 ("x86/cpu: Add workaround for MONITOR
> instruction erratum on Goldmont based CPUs")
> 2. When the CPU is entering suspend to idle process, the
> _TIF_POLLING_NRFLAG is kept on.
> 3. Commit b2a02fc43a1f ("smp: Optimize send_call_function_single_ipi()")
> makes use of _TIF_POLLING_NRFLAG to avoid sending IPIs to
> idle CPUs.
> 4. As a result, some IPIs related functions might not work
> well during suspend to idle on Goldmont. For example, one
> suspected victim:
> tick_unfreeze() -> timekeeping_resume() -> hrtimers_resume()
> -> clock_was_set() -> on_each_cpu() might wait forever,
> because the IPIs will not be sent to the CPUs which are
> sleeping with _TIF_POLLING_NRFLAG set, and Goldmont CPU
> could not be woken up by only setting _TIF_NEED_RESCHED
> on the monitor address.
*sigh*... just what we need.
> @@ -186,8 +187,10 @@ int cpuidle_enter_s2idle(struct cpuidle_driver *drv, struct cpuidle_device *dev)
> * be frozen safely.
> */
> index = find_deepest_state(drv, dev, U64_MAX, 0, true);
> - if (index > 0)
> + if (index > 0) {
> + __current_clr_polling();
> enter_s2idle_proper(drv, dev, index);
> + }
>
> return index;
> }
So how is that commit 08e237fa56a1 not suffient? That makes
mwait_idle_with_hints() DTRT for this 'functionally challenged' piece of
hardware.
AFAICT intel_enter_s2idle() uses mwait_idle_with_hints().
What am I missing?
next prev parent reply other threads:[~2020-06-15 18:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-15 17:36 [PATCH][RFC] PM / s2idle: Clear _TIF_POLLING_NRFLAG before suspend to idle Chen Yu
2020-06-15 18:40 ` Peter Zijlstra [this message]
2020-06-15 19:31 ` Peter Zijlstra
2020-06-16 3:36 ` Chen Yu
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=20200615184041.GG2531@hirez.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=daniel.lezcano@linaro.org \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=rafael@kernel.org \
--cc=yu.c.chen@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox