Re: [patch 1/3] sched: init rt_avg stat whenever rq comes online

From: Peter Zijlstra
Date: Tue Aug 17 2010 - 04:52:00 EST


On Mon, 2010-08-16 at 21:25 +0200, Peter Zijlstra wrote:
> You can use something like:
>
> suspend:
> __get_cpu_var(cyc2ns_suspend) = sched_clock();
>
> resume:
> for_each_possible_cpu(i)
> per_cpu(cyc2ns_offset, i) += per_cpu(cyc2ns_suspend);
>
> or something like that to keep sched_clock() stable, which is exactly
> what most (all?) its users expect when we report the TSC is usable.

That's actually broken, you only want a single offset, otherwise we
de-sync the TSC, which is bad.

So simply store the sched_clock() value at suspend time on the single
CPU that is still running, then on resume make sure sched_clock()
continues there by adding that stamp to all CPU offsets.


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/