diff mbox series

[v2] rcu: Make call_rcu() lazy only when CONFIG_RCU_LAZY is enabled

Message ID 20221019233835.395474-1-qiang1.zhang@intel.com (mailing list archive)
State Superseded
Headers show
Series [v2] rcu: Make call_rcu() lazy only when CONFIG_RCU_LAZY is enabled | expand

Commit Message

Zqiang Oct. 19, 2022, 11:38 p.m. UTC
Currently, regardless of whether the CONFIG_RCU_LAZY is enabled,
invoke the call_rcu() is always lazy, it also means that when
CONFIG_RCU_LAZY is disabled, invoke the call_rcu_flush() is also
lazy. therefore, this commit make call_rcu() lazy only when
CONFIG_RCU_LAZY is enabled.

Signed-off-by: Zqiang <qiang1.zhang@intel.com>
---
 v1->v2: 
 Use IS_ENABLED(CONFIG_RCU_LAZY) to the existing function of the same name.

 kernel/rcu/tree.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Comments

Paul E. McKenney Oct. 19, 2022, 11:52 p.m. UTC | #1
On Thu, Oct 20, 2022 at 07:38:35AM +0800, Zqiang wrote:
> Currently, regardless of whether the CONFIG_RCU_LAZY is enabled,
> invoke the call_rcu() is always lazy, it also means that when
> CONFIG_RCU_LAZY is disabled, invoke the call_rcu_flush() is also
> lazy. therefore, this commit make call_rcu() lazy only when
> CONFIG_RCU_LAZY is enabled.
> 
> Signed-off-by: Zqiang <qiang1.zhang@intel.com>
> ---
>  v1->v2: 
>  Use IS_ENABLED(CONFIG_RCU_LAZY) to the existing function of the same name.
> 
>  kernel/rcu/tree.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
> index abc615808b6e..ecf42b0d3726 100644
> --- a/kernel/rcu/tree.c
> +++ b/kernel/rcu/tree.c
> @@ -2887,7 +2887,10 @@ EXPORT_SYMBOL_GPL(call_rcu_flush);
>   */
>  void call_rcu(struct rcu_head *head, rcu_callback_t func)
>  {
> -	return __call_rcu_common(head, func, true);
> +	if (IS_ENABLED(CONFIG_RCU_LAZY))
> +		return __call_rcu_common(head, func, true);
> +	else
> +		return __call_rcu_common(head, func, false);

This is much better, but why not something like this?

	return __call_rcu_common(head, func, IS_ENABLED(CONFIG_RCU_LAZY));

							Thanx, Paul

>  }
>  EXPORT_SYMBOL_GPL(call_rcu);
>  
> -- 
> 2.25.1
>
Zqiang Oct. 20, 2022, 12:49 a.m. UTC | #2
On Thu, Oct 20, 2022 at 07:38:35AM +0800, Zqiang wrote:
> Currently, regardless of whether the CONFIG_RCU_LAZY is enabled,
> invoke the call_rcu() is always lazy, it also means that when
> CONFIG_RCU_LAZY is disabled, invoke the call_rcu_flush() is also
> lazy. therefore, this commit make call_rcu() lazy only when
> CONFIG_RCU_LAZY is enabled.
> 
> Signed-off-by: Zqiang <qiang1.zhang@intel.com>
> ---
>  v1->v2: 
>  Use IS_ENABLED(CONFIG_RCU_LAZY) to the existing function of the same name.
> 
>  kernel/rcu/tree.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
> index abc615808b6e..ecf42b0d3726 100644
> --- a/kernel/rcu/tree.c
> +++ b/kernel/rcu/tree.c
> @@ -2887,7 +2887,10 @@ EXPORT_SYMBOL_GPL(call_rcu_flush);
>   */
>  void call_rcu(struct rcu_head *head, rcu_callback_t func)
>  {
> -	return __call_rcu_common(head, func, true);
> +	if (IS_ENABLED(CONFIG_RCU_LAZY))
> +		return __call_rcu_common(head, func, true);
> +	else
> +		return __call_rcu_common(head, func, false);

>
>This is much better, but why not something like this?

Yes, it looks better, 
diff mbox series

Patch

diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
index abc615808b6e..ecf42b0d3726 100644
--- a/kernel/rcu/tree.c
+++ b/kernel/rcu/tree.c
@@ -2887,7 +2887,10 @@  EXPORT_SYMBOL_GPL(call_rcu_flush);
  */
 void call_rcu(struct rcu_head *head, rcu_callback_t func)
 {
-	return __call_rcu_common(head, func, true);
+	if (IS_ENABLED(CONFIG_RCU_LAZY))
+		return __call_rcu_common(head, func, true);
+	else
+		return __call_rcu_common(head, func, false);
 }
 EXPORT_SYMBOL_GPL(call_rcu);