* John Stultz <john.stu...@linaro.org> wrote: > In the case where there is a broken clocksource > where there are multiple actual clocks that > aren't perfectly aligned, we may see small "negative" > deltas when we subtract now from cycle_last.
So this is a typical example where putting argument references is really helpful. Consider these two variants: deltas when we subtract now from cycle_last. deltas when we subtract 'now' from 'cycle_last'. I had to read the first variant three times until I realized that 'now' is a C variable misleadingly inserted into English text. > The values are actually negative with respect to the > clocksource mask value, not necessarily negative > if cast to a s64, but we can check by checking the > delta see if it is a small (relative to the mask) > negative value (again negative relative to the mask). typo. Thanks, Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/