/* Leader CPU takes GP-end wakeups. */
 #endif /* #ifdef CONFIG_RCU_NOCB_CPU */
 
-       /* 6) Diagnostic data, including RCU CPU stall warnings. */
+       /* 6) RCU priority boosting. */
+       struct task_struct *rcu_cpu_kthread_task;
+                                       /* rcuc per-CPU kthread or NULL. */
+
+       /* 7) Diagnostic data, including RCU CPU stall warnings. */
        unsigned int softirq_snap;      /* Snapshot of softirq activity. */
        /* ->rcu_iw* fields protected by leaf rcu_node ->lock. */
        struct irq_work rcu_iw;         /* Check for non-irq activity. */
 
 /*
  * Control variables for per-CPU and per-rcu_node kthreads.
  */
-static DEFINE_PER_CPU(struct task_struct *, rcu_cpu_kthread_task);
 DEFINE_PER_CPU(unsigned int, rcu_cpu_kthread_status);
 DEFINE_PER_CPU(unsigned int, rcu_cpu_kthread_loops);
 DEFINE_PER_CPU(char, rcu_cpu_has_work);
 
        local_irq_save(flags);
        __this_cpu_write(rcu_cpu_has_work, 1);
-       if (__this_cpu_read(rcu_cpu_kthread_task) != NULL &&
-           current != __this_cpu_read(rcu_cpu_kthread_task)) {
-               rcu_wake_cond(__this_cpu_read(rcu_cpu_kthread_task),
+       if (__this_cpu_read(rcu_data.rcu_cpu_kthread_task) != NULL &&
+           current != __this_cpu_read(rcu_data.rcu_cpu_kthread_task)) {
+               rcu_wake_cond(__this_cpu_read(rcu_data.rcu_cpu_kthread_task),
                              __this_cpu_read(rcu_cpu_kthread_status));
        }
        local_irq_restore(flags);
  */
 static bool rcu_is_callbacks_kthread(void)
 {
-       return __this_cpu_read(rcu_cpu_kthread_task) == current;
+       return __this_cpu_read(rcu_data.rcu_cpu_kthread_task) == current;
 }
 
 #define RCU_BOOST_DELAY_JIFFIES DIV_ROUND_UP(CONFIG_RCU_BOOST_DELAY * HZ, 1000)
 }
 
 static struct smp_hotplug_thread rcu_cpu_thread_spec = {
-       .store                  = &rcu_cpu_kthread_task,
+       .store                  = &rcu_data.rcu_cpu_kthread_task,
        .thread_should_run      = rcu_cpu_kthread_should_run,
        .thread_fn              = rcu_cpu_kthread,
        .thread_comm            = "rcuc/%u",