diff options
author | Paul E. McKenney <paulmck@linux.ibm.com> | 2019-05-21 09:20:10 -0700 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.ibm.com> | 2019-08-13 14:35:49 -0700 |
commit | 4f9c1bc727f917c8c32ee1decc88e89057e0dffc (patch) | |
tree | 69799df2b9c6940a90d7539c9ec7a70329b29fe5 /kernel/rcu | |
parent | 2a777de757f4c7050997c6232a585eff59c5ea36 (diff) |
rcu/nocb: Remove obsolete nocb_gp_head and nocb_gp_tail fields
Signed-off-by: Paul E. McKenney <paulmck@linux.ibm.com>
Diffstat (limited to 'kernel/rcu')
-rw-r--r-- | kernel/rcu/tree.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/rcu/tree.h b/kernel/rcu/tree.h index 6e4cf7de303f..c12e85c12310 100644 --- a/kernel/rcu/tree.h +++ b/kernel/rcu/tree.h @@ -201,10 +201,8 @@ struct rcu_data { struct timer_list nocb_timer; /* Enforce finite deferral. */ /* The following fields are used by GP kthread, hence own cacheline. */ - struct rcu_head *nocb_gp_head ____cacheline_internodealigned_in_smp; - /* CBs waiting for GP. */ - struct rcu_head **nocb_gp_tail; - bool nocb_gp_sleep; /* Is the nocb GP thread asleep? */ + bool nocb_gp_sleep ____cacheline_internodealigned_in_smp; + /* Is the nocb GP thread asleep? */ struct swait_queue_head nocb_gp_wq; /* For nocb kthreads to sleep on. */ bool nocb_cb_sleep; /* Is the nocb CB thread asleep? */ struct task_struct *nocb_cb_kthread; |