Searched refs:soft (Results 1 – 3 of 3) sorted by relevance
/kernel/time/ |
D | posix-cpu-timers.c | 896 unsigned long soft; in check_thread_timers() local 910 soft = task_rlimit(tsk, RLIMIT_RTTIME); in check_thread_timers() 911 if (soft != RLIM_INFINITY) { in check_thread_timers() 922 if (check_rlimit(rttime, soft, SIGXCPU, true, false)) { in check_thread_timers() 923 soft += USEC_PER_SEC; in check_thread_timers() 924 tsk->signal->rlim[RLIMIT_RTTIME].rlim_cur = soft; in check_thread_timers() 974 unsigned long soft; in check_process_timers() local 1007 soft = task_rlimit(tsk, RLIMIT_CPU); in check_process_timers() 1008 if (soft != RLIM_INFINITY) { in check_process_timers() 1012 u64 softns = (u64)soft * NSEC_PER_SEC; in check_process_timers() [all …]
|
D | hrtimer.c | 596 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/ |
D | rt.c | 2553 unsigned long soft, hard; in watchdog() local 2556 soft = task_rlimit(p, RLIMIT_RTTIME); in watchdog() 2559 if (soft != RLIM_INFINITY) { in watchdog() 2567 next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ); in watchdog()
|