• Home
  • Raw
  • Download

Lines Matching refs:j

447 	unsigned long j;  in adjust_jiffies_till_sched_qs()  local
455 j = READ_ONCE(jiffies_till_first_fqs) + in adjust_jiffies_till_sched_qs()
457 if (j < HZ / 10 + nr_cpu_ids / RCU_JIFFIES_FQS_DIV) in adjust_jiffies_till_sched_qs()
458 j = HZ / 10 + nr_cpu_ids / RCU_JIFFIES_FQS_DIV; in adjust_jiffies_till_sched_qs()
459 pr_info("RCU calculated value of scheduler-enlistment delay is %ld jiffies.\n", j); in adjust_jiffies_till_sched_qs()
460 WRITE_ONCE(jiffies_to_sched_qs, j); in adjust_jiffies_till_sched_qs()
465 ulong j; in param_set_first_fqs_jiffies() local
466 int ret = kstrtoul(val, 0, &j); in param_set_first_fqs_jiffies()
469 WRITE_ONCE(*(ulong *)kp->arg, (j > HZ) ? HZ : j); in param_set_first_fqs_jiffies()
477 ulong j; in param_set_next_fqs_jiffies() local
478 int ret = kstrtoul(val, 0, &j); in param_set_next_fqs_jiffies()
481 WRITE_ONCE(*(ulong *)kp->arg, (j > HZ) ? HZ : (j ?: 1)); in param_set_next_fqs_jiffies()
1679 unsigned long j; in rcu_gp_fqs_loop() local
1683 j = READ_ONCE(jiffies_till_first_fqs); in rcu_gp_fqs_loop()
1689 j = (j + 2) / 3; in rcu_gp_fqs_loop()
1690 if (j <= 0) in rcu_gp_fqs_loop()
1691 j = 1; in rcu_gp_fqs_loop()
1693 if (!ret || time_before(jiffies + j, rcu_state.jiffies_force_qs)) { in rcu_gp_fqs_loop()
1694 WRITE_ONCE(rcu_state.jiffies_force_qs, jiffies + j); in rcu_gp_fqs_loop()
1701 jiffies + (j ? 3 * j : 2)); in rcu_gp_fqs_loop()
1707 rcu_gp_fqs_check_wake(&gf), j); in rcu_gp_fqs_loop()
1739 j = READ_ONCE(jiffies_till_next_fqs); in rcu_gp_fqs_loop()
1748 j = jiffies; in rcu_gp_fqs_loop()
1750 j = 1; in rcu_gp_fqs_loop()
1752 j = rcu_state.jiffies_force_qs - j; in rcu_gp_fqs_loop()
2373 unsigned long j; in rcu_sched_clock_irq() local
2376 j = jiffies; in rcu_sched_clock_irq()
2377 WARN_ON_ONCE(time_before(j, __this_cpu_read(rcu_data.last_sched_clock))); in rcu_sched_clock_irq()
2378 __this_cpu_write(rcu_data.last_sched_clock, j); in rcu_sched_clock_irq()
2631 unsigned long *j = this_cpu_ptr(&rcu_data.rcuc_activity); in rcu_cpu_kthread() local
2636 WRITE_ONCE(*j, jiffies); in rcu_cpu_kthread()
2657 WRITE_ONCE(*j, jiffies); in rcu_cpu_kthread()
3100 int i, j; in kfree_rcu_work() local
3133 for (j = 0; j < bkvhead[i]->nr_records; j++) { in kfree_rcu_work()
3136 bkvhead[i]->records[j], 0); in kfree_rcu_work()
3138 vfree(bkvhead[i]->records[j]); in kfree_rcu_work()
3226 int i, j; in kfree_rcu_monitor() local
3243 for (j = 0; j < FREE_N_CHANNELS; j++) { in kfree_rcu_monitor()
3244 if (!krwp->bkvhead_free[j]) { in kfree_rcu_monitor()
3245 krwp->bkvhead_free[j] = krcp->bkvhead[j]; in kfree_rcu_monitor()
3246 krcp->bkvhead[j] = NULL; in kfree_rcu_monitor()
4642 int j; in rcu_init_one() local
4663 for (j = 0; j < num_rcu_lvl[i]; j++, rnp++) { in rcu_init_one()
4675 rnp->grplo = j * cpustride; in rcu_init_one()
4676 rnp->grphi = (j + 1) * cpustride - 1; in rcu_init_one()
4684 rnp->grpnum = j % levelspread[i - 1]; in rcu_init_one()
4687 j / levelspread[i - 1]; in rcu_init_one()