Lines Matching refs:soft
813 unsigned long soft; in check_thread_timers() local
837 soft = task_rlimit(tsk, RLIMIT_RTTIME); in check_thread_timers()
838 if (soft != RLIM_INFINITY) { in check_thread_timers()
854 if (tsk->rt.timeout > DIV_ROUND_UP(soft, USEC_PER_SEC/HZ)) { in check_thread_timers()
858 if (soft < hard) { in check_thread_timers()
859 soft += USEC_PER_SEC; in check_thread_timers()
861 soft; in check_thread_timers()
918 unsigned long soft; in check_process_timers() local
955 soft = task_rlimit(tsk, RLIMIT_CPU); in check_process_timers()
956 if (soft != RLIM_INFINITY) { in check_process_timers()
972 if (psecs >= soft) { in check_process_timers()
981 if (soft < hard) { in check_process_timers()
982 soft++; in check_process_timers()
983 sig->rlim[RLIMIT_CPU].rlim_cur = soft; in check_process_timers()
986 x = soft * NSEC_PER_SEC; in check_process_timers()