Home
last modified time | relevance | path

Searched refs:NTP_PHASE_LIMIT (Results 1 – 2 of 2) sorted by relevance

/linux-6.15/kernel/time/
H A Dntp.c94 .time_maxerror = NTP_PHASE_LIMIT,
95 .time_esterror = NTP_PHASE_LIMIT,
336 ntpdata->time_maxerror = NTP_PHASE_LIMIT; in __ntp_clear()
337 ntpdata->time_esterror = NTP_PHASE_LIMIT; in __ntp_clear()
447 if (ntpdata->time_maxerror > NTP_PHASE_LIMIT) { in second_overflow()
448 ntpdata->time_maxerror = NTP_PHASE_LIMIT; in second_overflow()
733 ntpdata->time_maxerror = clamp(txc->maxerror, 0, NTP_PHASE_LIMIT); in process_adjtimex_modes()
736 ntpdata->time_esterror = clamp(txc->esterror, 0, NTP_PHASE_LIMIT); in process_adjtimex_modes()
/linux-6.15/include/linux/
H A Dtimex.h140 #define NTP_PHASE_LIMIT ((MAXPHASE / NSEC_PER_USEC) << 5) /* beyond max. dispersion */ macro