diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2017-05-02 11:48:33 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2017-05-02 12:22:48 -0400 |
commit | 933dfbd7c437bbbf65caae785dfa105fbfaa8485 (patch) | |
tree | b9a71f3445203169c7deda78e8ea971f4cba01c0 /kernel/rcu/tree_plugin.h | |
parent | 4b27f20b40a23f03df682eb1f69e9dc3da7d3b93 (diff) |
rcu: Open-code the rcu_cblist_n_lazy_cbs() function
Because the rcu_cblist_n_lazy_cbs() just samples the ->len_lazy counter,
and because the rcu_cblist structure is quite straightforward, it makes
sense to open-code rcu_cblist_n_lazy_cbs(p) as p->len_lazy, cutting out
a level of indirection. This commit makes this change.
Reported-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/rcu/tree_plugin.h')
-rw-r--r-- | kernel/rcu/tree_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h index 7ebe357df155..c9a48657512a 100644 --- a/kernel/rcu/tree_plugin.h +++ b/kernel/rcu/tree_plugin.h | |||
@@ -1935,7 +1935,7 @@ static bool __maybe_unused rcu_nocb_adopt_orphan_cbs(struct rcu_state *rsp, | |||
1935 | unsigned long flags) | 1935 | unsigned long flags) |
1936 | { | 1936 | { |
1937 | long ql = rsp->orphan_done.len; | 1937 | long ql = rsp->orphan_done.len; |
1938 | long qll = rcu_cblist_n_lazy_cbs(&rsp->orphan_done); | 1938 | long qll = rsp->orphan_done.len_lazy; |
1939 | 1939 | ||
1940 | /* If this is not a no-CBs CPU, tell the caller to do it the old way. */ | 1940 | /* If this is not a no-CBs CPU, tell the caller to do it the old way. */ |
1941 | if (!rcu_is_nocb_cpu(smp_processor_id())) | 1941 | if (!rcu_is_nocb_cpu(smp_processor_id())) |