Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1313827 > unrolled thread
| Started by | Wanpeng Li <kernellwp@gmail.com> |
|---|---|
| First post | 2016-01-21 04:00 +0100 |
| Last post | 2016-01-27 12:40 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] nohz: fix jiffies warp while switch to low-res nohz mode Wanpeng Li <kernellwp@gmail.com> - 2016-01-21 04:00 +0100
Re: [PATCH] nohz: fix jiffies warp while switch to low-res nohz mode Thomas Gleixner <tglx@linutronix.de> - 2016-01-26 16:30 +0100
Re: [PATCH] nohz: fix jiffies warp while switch to low-res nohz mode Wanpeng Li <kernellwp@gmail.com> - 2016-01-27 12:40 +0100
| From | Wanpeng Li <kernellwp@gmail.com> |
|---|---|
| Date | 2016-01-21 04:00 +0100 |
| Subject | [PATCH] nohz: fix jiffies warp while switch to low-res nohz mode |
| Message-ID | <qTdDA-7aw-7@gated-at.bofh.it> |
After commit 0ff53d096422 ("tick: sched: Force tick interrupt and get rid
of softirq magic"), next expire time is overwritten by last_jiffies_update
while switch to low-res nohz mode which leads to jiffies warp. This patch
fix it by programming ce device the expire time in the future.
Signed-off-by: Wanpeng Li <wanpeng.li@hotmail.com>
---
kernel/time/tick-sched.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
index 9cc20af..cea6a0e 100644
--- a/kernel/time/tick-sched.c
+++ b/kernel/time/tick-sched.c
@@ -993,9 +993,9 @@ static void tick_nohz_switch_to_nohz(void)
/* Get the next period */
next = tick_init_jiffy_update();
- hrtimer_forward_now(&ts->sched_timer, tick_period);
hrtimer_set_expires(&ts->sched_timer, next);
- tick_program_event(next, 1);
+ hrtimer_forward_now(&ts->sched_timer, tick_period);
+ tick_program_event(hrtimer_get_expires(&ts->sched_timer), 1);
tick_nohz_activate(ts, NOHZ_MODE_LOWRES);
}
--
1.9.1
[toc] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2016-01-26 16:30 +0100 |
| Subject | Re: [PATCH] nohz: fix jiffies warp while switch to low-res nohz mode |
| Message-ID | <qVdJ8-5Zk-15@gated-at.bofh.it> |
| In reply to | #1313827 |
On Thu, 21 Jan 2016, Wanpeng Li wrote:
> After commit 0ff53d096422 ("tick: sched: Force tick interrupt and get rid
> of softirq magic"), next expire time is overwritten by last_jiffies_update
> while switch to low-res nohz mode which leads to jiffies warp. This patch
> fix it by programming ce device the expire time in the future.
> - hrtimer_forward_now(&ts->sched_timer, tick_period);
> hrtimer_set_expires(&ts->sched_timer, next);
> - tick_program_event(next, 1);
> + hrtimer_forward_now(&ts->sched_timer, tick_period);
> + tick_program_event(hrtimer_get_expires(&ts->sched_timer), 1);
> tick_nohz_activate(ts, NOHZ_MODE_LOWRES);
I agree, that the ordering forward/set is wrong and needs to be fixed, but how
does that result in a jiffies warp?
tick_nohz_handler()
tick_sched_do_timer()
tick_do_update_jiffies64()
delta = ktime_sub(now, last_jiffies_update);
if (delta.tv64 < tick_period.tv64)
return;
So if that timer fires early, tick_do_update_jiffies64() will just return and
do nothing. So what makes jiffies warp?
Unless I'm missing something, this changelog is patently wrong.
Thanks,
tglx
[toc] | [prev] | [next] | [standalone]
| From | Wanpeng Li <kernellwp@gmail.com> |
|---|---|
| Date | 2016-01-27 12:40 +0100 |
| Message-ID | <qVwC6-2Pt-15@gated-at.bofh.it> |
| In reply to | #1318054 |
2016-01-26 23:21 GMT+08:00 Thomas Gleixner <tglx@linutronix.de>:
> On Thu, 21 Jan 2016, Wanpeng Li wrote:
>
>> After commit 0ff53d096422 ("tick: sched: Force tick interrupt and get rid
>> of softirq magic"), next expire time is overwritten by last_jiffies_update
>> while switch to low-res nohz mode which leads to jiffies warp. This patch
>> fix it by programming ce device the expire time in the future.
>
>> - hrtimer_forward_now(&ts->sched_timer, tick_period);
>> hrtimer_set_expires(&ts->sched_timer, next);
>> - tick_program_event(next, 1);
>> + hrtimer_forward_now(&ts->sched_timer, tick_period);
>> + tick_program_event(hrtimer_get_expires(&ts->sched_timer), 1);
>> tick_nohz_activate(ts, NOHZ_MODE_LOWRES);
>
> I agree, that the ordering forward/set is wrong and needs to be fixed, but how
> does that result in a jiffies warp?
>
> tick_nohz_handler()
> tick_sched_do_timer()
> tick_do_update_jiffies64()
> delta = ktime_sub(now, last_jiffies_update);
> if (delta.tv64 < tick_period.tv64)
> return;
Yeah, I know this catch it and that's why no real warp happen, just send out v2,
thanks for your review, Thomas. :-)
Regards,
Wanpeng Li
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web