diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-08-04 06:00:38 +0200 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-08-31 01:03:50 +0200 |
commit | 2dba13f0b6c2b26ff371b8927ac58d20a7d94713 (patch) | |
tree | fa3fcb58680ea2b5afc82f91b4d148234ea78114 /kernel/rcu/tree.h | |
parent | rcu: Switch lazy counts to rcu_data structure (diff) | |
download | linux-2dba13f0b6c2b26ff371b8927ac58d20a7d94713.tar.xz linux-2dba13f0b6c2b26ff371b8927ac58d20a7d94713.zip |
rcu: Switch urgent quiescent-state requests to rcu_data structure
This commit removes ->rcu_need_heavy_qs and ->rcu_urgent_qs from the
rcu_dynticks structure and updates the code to access them from the
rcu_data structure.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu/tree.h')
-rw-r--r-- | kernel/rcu/tree.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/rcu/tree.h b/kernel/rcu/tree.h index 36a47c7bd882..4c31066ddb94 100644 --- a/kernel/rcu/tree.h +++ b/kernel/rcu/tree.h @@ -41,8 +41,6 @@ struct rcu_dynticks { long dynticks_nesting; /* Track process nesting level. */ long dynticks_nmi_nesting; /* Track irq/NMI nesting level. */ atomic_t dynticks; /* Even value for idle, else odd. */ - bool rcu_need_heavy_qs; /* GP old, need heavy quiescent state. */ - bool rcu_urgent_qs; /* GP old need light quiescent state. */ }; /* Communicate arguments to a workqueue handler. */ |