rcu: Add closing parenthesis in comment in rcu_read_unlock_strict()

This comment is missing a closing parenthesis:

	 * The in_atomic_preempt_off() check ensures that we come here holding
	 * the last preempt_count (which will get dropped once we return to
	 * __rcu_read_unlock().

This commit therefore adds it at the end of the sentence.

Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
This commit is contained in:
Paul E. McKenney 2026-08-14 15:37:15 -07:00
parent 76892716e1
commit 301d28fefd

View File

@ -949,7 +949,7 @@ void rcu_read_unlock_strict(void)
*
* The in_atomic_preempt_off() check ensures that we come here holding
* the last preempt_count (which will get dropped once we return to
* __rcu_read_unlock().
* __rcu_read_unlock()).
*/
rdp = this_cpu_ptr(&rcu_data);
WRITE_ONCE(rdp->cpu_no_qs.b.norm, false);