Lines Matching refs:soft
865 unsigned long soft; in check_thread_timers() local
886 soft = READ_ONCE(sig->rlim[RLIMIT_RTTIME].rlim_cur); in check_thread_timers()
887 if (soft != RLIM_INFINITY) { in check_thread_timers()
900 if (tsk->rt.timeout > DIV_ROUND_UP(soft, USEC_PER_SEC/HZ)) { in check_thread_timers()
904 if (soft < hard) { in check_thread_timers()
905 soft += USEC_PER_SEC; in check_thread_timers()
906 sig->rlim[RLIMIT_RTTIME].rlim_cur = soft; in check_thread_timers()
969 unsigned long soft; in check_process_timers() local
1003 soft = READ_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur); in check_process_timers()
1004 if (soft != RLIM_INFINITY) { in check_process_timers()
1017 if (psecs >= soft) { in check_process_timers()
1022 if (soft < hard) { in check_process_timers()
1023 soft++; in check_process_timers()
1024 sig->rlim[RLIMIT_CPU].rlim_cur = soft; in check_process_timers()
1027 x = secs_to_cputime(soft); in check_process_timers()