Home
last modified time | relevance | path

Searched refs:soft (Results 1 – 3 of 3) sorted by relevance

/kernel/time/
Dposix-cpu-timers.c903 unsigned long soft; in check_thread_timers() local
917 soft = task_rlimit(tsk, RLIMIT_RTTIME); in check_thread_timers()
918 if (soft != RLIM_INFINITY) { in check_thread_timers()
929 if (check_rlimit(rttime, soft, SIGXCPU, true, false)) { in check_thread_timers()
930 soft += USEC_PER_SEC; in check_thread_timers()
931 tsk->signal->rlim[RLIMIT_RTTIME].rlim_cur = soft; in check_thread_timers()
981 unsigned long soft; in check_process_timers() local
1014 soft = task_rlimit(tsk, RLIMIT_CPU); in check_process_timers()
1015 if (soft != RLIM_INFINITY) { in check_process_timers()
1019 u64 softns = (u64)soft * NSEC_PER_SEC; in check_process_timers()
[all …]
Dhrtimer.c596 ktime_t expires_next, soft = KTIME_MAX; in hrtimer_update_next_event() local
604 soft = __hrtimer_get_next_event(cpu_base, HRTIMER_ACTIVE_SOFT); in hrtimer_update_next_event()
609 cpu_base->softirq_expires_next = soft; in hrtimer_update_next_event()
617 if (expires_next > soft) { in hrtimer_update_next_event()
619 expires_next = soft; in hrtimer_update_next_event()
/kernel/sched/
Drt.c2716 unsigned long soft, hard; in watchdog() local
2719 soft = task_rlimit(p, RLIMIT_RTTIME); in watchdog()
2722 if (soft != RLIM_INFINITY) { in watchdog()
2730 next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ); in watchdog()