Searched refs:cs_nsec (Results 1 – 1 of 1) sorted by relevance
/linux-6.6.21/kernel/time/ |
D | clocksource.c | 339 int64_t cs_nsec, cs_nsec_max = 0, cs_nsec_min = LLONG_MAX; in clocksource_verify_percpu() local 372 cs_nsec = clocksource_cyc2ns(delta, cs->mult, cs->shift); in clocksource_verify_percpu() 373 if (cs_nsec > cs_nsec_max) in clocksource_verify_percpu() 374 cs_nsec_max = cs_nsec; in clocksource_verify_percpu() 375 if (cs_nsec < cs_nsec_min) in clocksource_verify_percpu() 376 cs_nsec_min = cs_nsec; in clocksource_verify_percpu() 404 int64_t wd_nsec, cs_nsec, interval; in clocksource_watchdog() local 466 cs_nsec = clocksource_cyc2ns(delta, cs->mult, cs->shift); in clocksource_watchdog() 484 interval = max(cs_nsec, wd_nsec); in clocksource_watchdog() 490 cs_nsec, wd_nsec); in clocksource_watchdog() [all …]
|