Skip to content

Commit

Permalink
rcu-tasks: Add a ->percpu_enqueue_lim to the rcu_tasks structure
Browse files Browse the repository at this point in the history
This commit adds a ->percpu_enqueue_lim field to the rcu_tasks structure.
This field contains two to the power of the ->percpu_enqueue_shift
field, easing construction of iterators over the per-CPU queues that
might contain RCU Tasks callbacks.  Such iterators will be introduced
in later commits.

Reported-by: Martin Lau <[email protected]>
Cc: Neeraj Upadhyay <[email protected]>
Signed-off-by: Paul E. McKenney <[email protected]>
  • Loading branch information
paulmckrcu committed Dec 9, 2021
1 parent 65b629e commit 8dd593f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kernel/rcu/tasks.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ struct rcu_tasks_percpu {
* @call_func: This flavor's call_rcu()-equivalent function.
* @rtpcpu: This flavor's rcu_tasks_percpu structure.
* @percpu_enqueue_shift: Shift down CPU ID this much when enqueuing callbacks.
* @percpu_enqueue_lim: Number of per-CPU callback queues in use.
* @name: This flavor's textual name.
* @kname: This flavor's kthread name.
*/
Expand All @@ -76,6 +77,7 @@ struct rcu_tasks {
call_rcu_func_t call_func;
struct rcu_tasks_percpu __percpu *rtpcpu;
int percpu_enqueue_shift;
int percpu_enqueue_lim;
char *name;
char *kname;
};
Expand All @@ -93,6 +95,7 @@ static struct rcu_tasks rt_name = \
.rtpcpu = &rt_name ## __percpu, \
.name = n, \
.percpu_enqueue_shift = ilog2(CONFIG_NR_CPUS), \
.percpu_enqueue_lim = 1, \
.kname = #rt_name, \
}

Expand Down Expand Up @@ -172,6 +175,7 @@ static void cblist_init_generic(struct rcu_tasks *rtp)

raw_spin_lock_irqsave(&rtp->cbs_gbl_lock, flags);
rtp->percpu_enqueue_shift = ilog2(nr_cpu_ids);
rtp->percpu_enqueue_lim = 1;
for_each_possible_cpu(cpu) {
struct rcu_tasks_percpu *rtpcp = per_cpu_ptr(rtp->rtpcpu, cpu);

Expand Down

0 comments on commit 8dd593f

Please sign in to comment.