aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/rcu/tree.c3
-rw-r--r--kernel/rcu/tree_plugin.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
index 2665a45ccb43..58aca700d67b 100644
--- a/kernel/rcu/tree.c
+++ b/kernel/rcu/tree.c
@@ -2281,8 +2281,7 @@ static void rcu_report_qs_rnp(unsigned long mask, struct rcu_node *rnp,
2281 * disabled. 2281 * disabled.
2282 */ 2282 */
2283static void __maybe_unused 2283static void __maybe_unused
2284rcu_report_unblock_qs_rnp(struct rcu_state *rsp, 2284rcu_report_unblock_qs_rnp(struct rcu_node *rnp, unsigned long flags)
2285 struct rcu_node *rnp, unsigned long flags)
2286 __releases(rnp->lock) 2285 __releases(rnp->lock)
2287{ 2286{
2288 unsigned long gps; 2287 unsigned long gps;
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
index 18175ca19f34..566828ecaecb 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -566,7 +566,7 @@ rcu_preempt_deferred_qs_irqrestore(struct task_struct *t, unsigned long flags)
566 rnp->grplo, 566 rnp->grplo,
567 rnp->grphi, 567 rnp->grphi,
568 !!rnp->gp_tasks); 568 !!rnp->gp_tasks);
569 rcu_report_unblock_qs_rnp(&rcu_state, rnp, flags); 569 rcu_report_unblock_qs_rnp(rnp, flags);
570 } else { 570 } else {
571 raw_spin_unlock_irqrestore_rcu_node(rnp, flags); 571 raw_spin_unlock_irqrestore_rcu_node(rnp, flags);
572 } 572 }