Commit 8ff0b907 authored by Paul E. McKenney's avatar Paul E. McKenney

rcu: Fix typo in force_qs_rnp()'s parameter's parameter

Pointers to rcu_data structures should be named rdp, not rsp.  This
commit therefore makes this change.
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
parent eb7a6653
......@@ -477,7 +477,7 @@ module_param(rcu_kick_kthreads, bool, 0644);
static ulong jiffies_till_sched_qs = HZ / 10;
module_param(jiffies_till_sched_qs, ulong, 0444);
static void force_qs_rnp(int (*f)(struct rcu_data *rsp));
static void force_qs_rnp(int (*f)(struct rcu_data *rdp));
static void force_quiescent_state(void);
static int rcu_pending(void);
......@@ -2570,7 +2570,7 @@ void rcu_check_callbacks(int user)
*
* The caller must have suppressed start of new grace periods.
*/
static void force_qs_rnp(int (*f)(struct rcu_data *rsp))
static void force_qs_rnp(int (*f)(struct rcu_data *rdp))
{
int cpu;
unsigned long flags;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment