• Home
  • Raw
  • Download

Lines Matching refs:j

64 	unsigned long j = jiffies;  in rcu_gp_might_be_stalled()  local
75 return !time_before(j, READ_ONCE(rcu_state.gp_start) + d); in rcu_gp_might_be_stalled()
144 unsigned long j = jiffies; in record_gp_stall_check_time() local
147 WRITE_ONCE(rcu_state.gp_start, j); in record_gp_stall_check_time()
151 WRITE_ONCE(rcu_state.jiffies_stall, j + j1); in record_gp_stall_check_time()
152 rcu_state.jiffies_resched = j + j1 / 2; in record_gp_stall_check_time()
170 unsigned long j; in rcu_stall_kick_kthreads() local
174 j = READ_ONCE(rcu_state.jiffies_kick_kthreads); in rcu_stall_kick_kthreads()
175 if (time_after(jiffies, j) && rcu_state.gp_kthread && in rcu_stall_kick_kthreads()
181 WRITE_ONCE(rcu_state.jiffies_kick_kthreads, j + HZ); in rcu_stall_kick_kthreads()
401 unsigned long j = jiffies - READ_ONCE(rcu_state.gp_activity); in rcu_is_gp_kthread_starving() local
404 *jp = j; in rcu_is_gp_kthread_starving()
405 return j > 2 * HZ; in rcu_is_gp_kthread_starving()
467 unsigned long j; in rcu_check_gp_kthread_starvation() local
469 if (rcu_is_gp_kthread_starving(&j)) { in rcu_check_gp_kthread_starvation()
472 rcu_state.name, j, in rcu_check_gp_kthread_starvation()
531 unsigned long j; in print_other_cpu_stall() local
578 j = jiffies; in print_other_cpu_stall()
581 rcu_state.name, j - gpa, j, gpa, in print_other_cpu_stall()
661 unsigned long j; in check_cpu_stall() local
681 j = jiffies; in check_cpu_stall()
709 ULONG_CMP_LT(j, js) || in check_cpu_stall()
733 ULONG_CMP_GE(j, js + RCU_STALL_RAT_DELAY) && in check_cpu_stall()
825 unsigned long j; in show_rcu_gp_kthreads() local
834 j = jiffies; in show_rcu_gp_kthreads()
835 ja = j - data_race(READ_ONCE(rcu_state.gp_activity)); in show_rcu_gp_kthreads()
836 jr = j - data_race(READ_ONCE(rcu_state.gp_req_activity)); in show_rcu_gp_kthreads()
837 js = j - data_race(READ_ONCE(rcu_state.gp_start)); in show_rcu_gp_kthreads()
838 jw = j - data_race(READ_ONCE(rcu_state.gp_wake_time)); in show_rcu_gp_kthreads()
894 unsigned long j; in rcu_check_gp_start_stall() local
903 j = jiffies; /* Expensive access, and in common case don't get here. */ in rcu_check_gp_start_stall()
904 if (time_before(j, READ_ONCE(rcu_state.gp_req_activity) + gpssdelay) || in rcu_check_gp_start_stall()
905 time_before(j, READ_ONCE(rcu_state.gp_activity) + gpssdelay) || in rcu_check_gp_start_stall()
910 j = jiffies; in rcu_check_gp_start_stall()
914 time_before(j, READ_ONCE(rcu_state.gp_req_activity) + gpssdelay) || in rcu_check_gp_start_stall()
915 time_before(j, READ_ONCE(rcu_state.gp_activity) + gpssdelay) || in rcu_check_gp_start_stall()
924 j = jiffies; in rcu_check_gp_start_stall()
928 time_before(j, READ_ONCE(rcu_state.gp_req_activity) + gpssdelay) || in rcu_check_gp_start_stall()
929 time_before(j, READ_ONCE(rcu_state.gp_activity) + gpssdelay) || in rcu_check_gp_start_stall()
949 void rcu_fwd_progress_check(unsigned long j) in rcu_fwd_progress_check() argument
966 rcu_check_gp_start_stall(rdp->mynode, rdp, j); in rcu_fwd_progress_check()