Lines Matching refs:slack
55 long slack; in __estimate_accuracy() local
67 slack = tv->tv_nsec / divfactor; in __estimate_accuracy()
68 slack += tv->tv_sec * (NSEC_PER_SEC/divfactor); in __estimate_accuracy()
70 if (slack > MAX_SLACK) in __estimate_accuracy()
73 return slack; in __estimate_accuracy()
80 u64 slack = current->timer_slack_ns; in select_estimate_accuracy() local
82 if (slack == 0) in select_estimate_accuracy()
88 if (ret < slack) in select_estimate_accuracy()
89 return slack; in select_estimate_accuracy()
235 ktime_t *expires, unsigned long slack) in poll_schedule_timeout() argument
241 rc = schedule_hrtimeout_range(expires, slack, HRTIMER_MODE_ABS); in poll_schedule_timeout()
489 u64 slack = 0; in do_select() local
509 slack = select_estimate_accuracy(end_time); in do_select()
604 to, slack)) in do_select()
882 u64 slack = 0; in do_poll() local
893 slack = select_estimate_accuracy(end_time); in do_poll()
958 if (!poll_schedule_timeout(wait, TASK_INTERRUPTIBLE, to, slack)) in do_poll()