Skip to content

Commit a5c071c

Browse files
committed
rcu-tasks: Remove second argument of rcu_read_unlock_trace_special()
The second argument of rcu_read_unlock_trace_special() is always zero. When called from exit_tasks_rcu_finish_trace(), it is the constant zero, and rcu_read_unlock_trace_special() doesn't get called from rcu_read_unlock_trace() unless the value of local variable "nesting" is zero because in that case the early return is taken instead. This commit therefore removes the "nesting" argument from the rcu_read_unlock_trace_special() function, substituting the constant zero within that function. This commit also adds a WARN_ON_ONCE() to rcu_read_lock_trace_held() in case non-zeroness some day appears. Signed-off-by: Paul E. McKenney <[email protected]>
1 parent 18f08e7 commit a5c071c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

include/linux/rcupdate_trace.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ static inline int rcu_read_lock_trace_held(void)
3131

3232
#ifdef CONFIG_TASKS_TRACE_RCU
3333

34-
void rcu_read_unlock_trace_special(struct task_struct *t, int nesting);
34+
void rcu_read_unlock_trace_special(struct task_struct *t);
3535

3636
/**
3737
* rcu_read_lock_trace - mark beginning of RCU-trace read-side critical section
@@ -80,7 +80,8 @@ static inline void rcu_read_unlock_trace(void)
8080
WRITE_ONCE(t->trc_reader_nesting, nesting);
8181
return; // We assume shallow reader nesting.
8282
}
83-
rcu_read_unlock_trace_special(t, nesting);
83+
WARN_ON_ONCE(nesting != 0);
84+
rcu_read_unlock_trace_special(t);
8485
}
8586

8687
void call_rcu_tasks_trace(struct rcu_head *rhp, rcu_callback_t func);

kernel/rcu/tasks.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ static void rcu_read_unlock_iw(struct irq_work *iwp)
848848
static DEFINE_IRQ_WORK(rcu_tasks_trace_iw, rcu_read_unlock_iw);
849849

850850
/* If we are the last reader, wake up the grace-period kthread. */
851-
void rcu_read_unlock_trace_special(struct task_struct *t, int nesting)
851+
void rcu_read_unlock_trace_special(struct task_struct *t)
852852
{
853853
int nq = READ_ONCE(t->trc_reader_special.b.need_qs);
854854

@@ -858,7 +858,7 @@ void rcu_read_unlock_trace_special(struct task_struct *t, int nesting)
858858
// Update .need_qs before ->trc_reader_nesting for irq/NMI handlers.
859859
if (nq)
860860
WRITE_ONCE(t->trc_reader_special.b.need_qs, false);
861-
WRITE_ONCE(t->trc_reader_nesting, nesting);
861+
WRITE_ONCE(t->trc_reader_nesting, 0);
862862
if (nq && atomic_dec_and_test(&trc_n_readers_need_end))
863863
irq_work_queue(&rcu_tasks_trace_iw);
864864
}
@@ -1200,7 +1200,7 @@ static void exit_tasks_rcu_finish_trace(struct task_struct *t)
12001200
WARN_ON_ONCE(READ_ONCE(t->trc_reader_nesting));
12011201
WRITE_ONCE(t->trc_reader_nesting, 0);
12021202
if (WARN_ON_ONCE(READ_ONCE(t->trc_reader_special.b.need_qs)))
1203-
rcu_read_unlock_trace_special(t, 0);
1203+
rcu_read_unlock_trace_special(t);
12041204
}
12051205

12061206
/**

0 commit comments

Comments
 (0)