Lines Matching refs:soft
841 unsigned long soft; in check_thread_timers() local
855 soft = ACCESS_ONCE(sig->rlim[RLIMIT_RTTIME].rlim_cur); in check_thread_timers()
856 if (soft != RLIM_INFINITY) { in check_thread_timers()
869 if (tsk->rt.timeout > DIV_ROUND_UP(soft, USEC_PER_SEC/HZ)) { in check_thread_timers()
873 if (soft < hard) { in check_thread_timers()
874 soft += USEC_PER_SEC; in check_thread_timers()
875 sig->rlim[RLIMIT_RTTIME].rlim_cur = soft; in check_thread_timers()
940 unsigned long soft; in check_process_timers() local
961 soft = ACCESS_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur); in check_process_timers()
962 if (soft != RLIM_INFINITY) { in check_process_timers()
975 if (psecs >= soft) { in check_process_timers()
980 if (soft < hard) { in check_process_timers()
981 soft++; in check_process_timers()
982 sig->rlim[RLIMIT_CPU].rlim_cur = soft; in check_process_timers()
985 x = secs_to_cputime(soft); in check_process_timers()