Re: [PATCH v2] clocksource: Skip watchdog check for large watchdog intervals

From: Thomas Gleixner
Date: Sat Jan 13 2024 - 19:22:37 EST


On Sat, Jan 13 2024 at 12:44, Jiri Wiesner wrote:
> On Fri, Jan 12, 2024 at 05:48:22PM +0100, Thomas Gleixner wrote:
>> On Wed, Jan 10 2024 at 20:26, Jiri Wiesner wrote:
>> > The measured clocksource skew - the absolute difference between cs_nsec
>> > and wd_nsec - was 668 microseconds:
>> >> cs_nsec - wd_nsec = 14524115132 - 14523447520 = 667612
>> >
>> > The kernel (based on 5.14.21) used 200 microseconds for the
>> > uncertainty_margin of both the clocksource and watchdog, resulting in a
>> > threshold of 400 microseconds. The discrepancy is that the measured
>> > clocksource skew was evaluated against a threshold suited for watchdog
>> > intervals of roughly WATCHDOG_INTERVAL, i.e. HZ >> 1, which is 0.5
>> > second.
>>
>> This really took some time to decode. What you are trying to explain is:
>>
>> The comparison between the clocksource and the watchdog is not
>> working for large readout intervals because the conversion to
>> nanoseconds is imprecise. The reason is that the initialization
>> values of the shift/mult pairs which are used for conversion are not
>> sufficiently accurate and the accumulated inaccuracy causes the
>> comparison to exceed the threshold.
>
> The root cause of the bug does not concern the precision of the conversion
> to nanoseconds. The shift/mult pair of the TSC can convert diffs as large
> as 600 seconds. The HPET is limited to 179.0 seconds on account of being a
> 32-bit counter. The acpi_pm can convert only 4.7 seconds. With the
> CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE option enabled, the ranges are
> reduced to a half. The example above showed the TSC as the clocksource and
> the HPET as a watchdog both of which should be able to convert a diff of
> 14.5 seconds to nanoseconds with sufficient precision.

No. It _is_ an initialization and conversion precision problem, nothing
else.

Assume a perfect world where the frequency of the TSC and the frequency
of the HPET are precisely known at initialization time and the
conversion factors to nanoseconds are precise as well. Assume further
that the clock frequencies wont drift over time differently.

Then the relationship between the nanosecond converted readouts of TSC
and HPET (or any other watchdog clocksource) would be constant
independent of the readout interval with the following prerequisites:

1) freq(TSC) / freq(HPET) == constant

2) Conversion from TSC to nanoseconds is correct independent of the
interval

3) Conversion from HPET to nanoseconds is correct independent of the
interval

So if all apply the uncertainty margin would be correct for any
valid non wrapped around readout interval, which is a completely
different issue to take care of.

Though because neither the frequency values are precise nor the
conversion factors to nanoseconds are precise for a larger interval nor
there is a guarantee that the clock frequencies of both clocks can't
drift differently all prerequisites #1 - #3 above are not there.

As a consequence there _is_ a limitation to the readout interval where
the comparison is valid.

See?

If you still don't agree then I'm happy to write up the corresponding
formulas for you.

Thanks,

tglx