From: Ingo Molnar <mingo@kernel.org>
To: Frederic Weisbecker <fweisbec@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Rik van Riel <riel@redhat.com>,
James Hartsock <hartsjc@redhat.com>,
Thomas Gleixner <tglx@linutronix.de>,
stable@vger.kernel.org, Tim Wright <tim@binbash.co.uk>,
Pavel Machek <pavel@ucw.cz>
Subject: Re: [PATCH 0/2] nohz: Deal with clock reprogram skipping issues v3
Date: Fri, 26 May 2017 08:13:20 +0200 [thread overview]
Message-ID: <20170526061320.uhl34walndqv6wo6@gmail.com> (raw)
In-Reply-To: <20170526021051.GA27061@lerouge>
* Frederic Weisbecker <fweisbec@gmail.com> wrote:
> On Wed, May 24, 2017 at 09:16:28AM +0200, Ingo Molnar wrote:
> > So the interdiff between your two patches and the 3 commits already queued up is:
> >
> > diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
> > index e3043873fcdc..30253ed0380b 100644
> > --- a/kernel/time/tick-sched.c
> > +++ b/kernel/time/tick-sched.c
> > @@ -150,12 +150,6 @@ static void tick_sched_handle(struct tick_sched *ts, struct pt_regs *regs)
> > touch_softlockup_watchdog_sched();
> > if (is_idle_task(current))
> > ts->idle_jiffies++;
> > - /*
> > - * In case the current tick fired too early past its expected
> > - * expiration, make sure we don't bypass the next clock reprogramming
> > - * to the same deadline.
> > - */
> > - ts->next_tick = 0;
> > }
> > #endif
> > update_process_times(user_mode(regs));
> > @@ -1103,8 +1097,15 @@ static void tick_nohz_handler(struct clock_event_device *dev)
> > tick_sched_handle(ts, regs);
> >
> > /* No need to reprogram if we are running tickless */
> > - if (unlikely(ts->tick_stopped))
> > + if (unlikely(ts->tick_stopped)) {
> > + /*
> > + * In case the current tick fired too early past its expected
> > + * expiration, make sure we don't bypass the next clock reprogramming
> > + * to the same deadline.
> > + */
> > + ts->next_tick = 0;
> > return;
> > + }
> >
> > hrtimer_forward(&ts->sched_timer, now, tick_period);
> > tick_program_event(hrtimer_get_expires(&ts->sched_timer), 1);
> > @@ -1202,12 +1203,17 @@ static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
> > */
> > if (regs)
> > tick_sched_handle(ts, regs);
> > - else
> > - ts->next_tick = 0;
> >
> > /* No need to reprogram if we are in idle or full dynticks mode */
> > - if (unlikely(ts->tick_stopped))
> > + if (unlikely(ts->tick_stopped)) {
> > + /*
> > + * In case the current tick fired too early past its expected
> > + * expiration, make sure we don't bypass the next clock reprogramming
> > + * to the same deadline.
> > + */
> > + ts->next_tick = 0;
> > return HRTIMER_NORESTART;
> > + }
> >
> > hrtimer_forward(timer, now, tick_period);
> >
> >
> > ... so the two are not the same - I'd rather not rebase it, I'd like to keep what
> > is working, we had problems with these changes before ...
> >
> > If you'd like the changes in this interdiff to be applied as well, please add a
> > changelog to it and post it as a fourth patch.
> >
> > Thanks,
> >
> > Ingo
>
> So if you like, you can replace the top patch with the following. It's exactly
> the same code, I've only added a comment and a changelog:
>
> ---
> From 72956bf08c3b2e506a5ce5ec4faac9fd6b097307 Mon Sep 17 00:00:00 2001
> From: Frederic Weisbecker <fweisbec@gmail.com>
> Date: Mon, 15 May 2017 14:56:50 +0200
> Subject: [PATCH] nohz: Reset next_tick cache even when the timer has no regs
>
> The tick IRQ regs can be NULL if hrtimer_interrupt() is called from
> non-interrupt contexts (ex: hotplug CPU down). For such very special
> path we forget to clean the cached next tick deadline. If we are in
> dynticks mode and the actual timer deadline is ahead of us, we might
> perform a buggy bypass of the next clock reprogramming.
>
> In fact since CPU down is the only user I'm aware of, this fix is likely
> unnecessary as dying CPUs already clean their tick deadline cache. But
> given how hard it is to debug such timer cache related issue, we should
> never be short on paranoid measures.
>
> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
> Cc: Linus Torvalds <torvalds@linux-foundation.org>
> Cc: Peter Zijlstra <peterz@infradead.org>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Signed-off-by: Ingo Molnar <mingo@kernel.org>
> ---
> kernel/time/tick-sched.c | 11 ++++++++++-
> 1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
> index 764d290..ed18ca5 100644
> --- a/kernel/time/tick-sched.c
> +++ b/kernel/time/tick-sched.c
> @@ -1200,8 +1200,17 @@ static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
> * Do not call, when we are not in irq context and have
> * no valid regs pointer
> */
> - if (regs)
> + if (regs) {
> tick_sched_handle(ts, regs);
> + } else {
> + /*
> + * IRQ regs are NULL if hrtimer_interrupt() is called from
> + * non-interrupt contexts (ex: hotplug cpu down). Make sure to
> + * clean the cached next tick deadline to avoid buggy bypass of
> + * clock reprog.
> + */
> + ts->next_tick = 0;
> + }
>
> /* No need to reprogram if we are in idle or full dynticks mode */
> if (unlikely(ts->tick_stopped))
Well, this does not answer my question: between latest tip:timers/nohz and the
patches you posted there's a delta, so it's not just a pure rebase.
I can do a rebase to resolve the bisectability problem (which isn't very serious
by the way, only a single commit wide window, right?), but only if 'git diff
old_branch new_branch' comes up empty.
In every other case let's iterate the existing timers/nohz with additional
patches, ok? I'd rather have a finegrained iteration with well-tested intermediate
stages than break things again.
Thanks,
Ingo
next prev parent reply other threads:[~2017-05-26 6:13 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-19 13:51 [PATCH 0/2] nohz: Deal with clock reprogram skipping issues v3 Frederic Weisbecker
2017-05-19 13:51 ` [PATCH 1/2] nohz: Add hrtimer sanity check Frederic Weisbecker
2017-05-19 13:51 ` [PATCH 2/2] nohz: Fix collision between tick and other hrtimers, again Frederic Weisbecker
2017-05-23 7:25 ` [PATCH 0/2] nohz: Deal with clock reprogram skipping issues v3 Ingo Molnar
2017-05-23 13:10 ` Frederic Weisbecker
2017-05-24 7:16 ` Ingo Molnar
2017-05-24 13:28 ` Frederic Weisbecker
2017-05-26 2:10 ` Frederic Weisbecker
2017-05-26 6:13 ` Ingo Molnar [this message]
2017-05-29 13:55 ` Frederic Weisbecker
2017-05-30 5:47 ` Ingo Molnar
2017-05-30 12:51 ` Frederic Weisbecker
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=20170526061320.uhl34walndqv6wo6@gmail.com \
--to=mingo@kernel.org \
--cc=fweisbec@gmail.com \
--cc=hartsjc@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=pavel@ucw.cz \
--cc=peterz@infradead.org \
--cc=riel@redhat.com \
--cc=stable@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=tim@binbash.co.uk \
/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;
as well as URLs for NNTP newsgroup(s).