[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1d46403b-50cc-410a-aa7d-ffaabc9fdda2@paulmck-laptop>
Date: Wed, 10 Sep 2025 09:05:09 -0700
From: "Paul E. McKenney" <paulmck@...nel.org>
To: Kaushlendra Kumar <kaushlendra.kumar@...el.com>
Cc: dave@...olabs.net, josh@...htriplett.org, frederic@...nel.org,
neeraj.upadhyay@...nel.org, rostedt@...dmis.org,
linux-kernel@...r.kernel.org, rcu@...r.kernel.org
Subject: Re: [PATCH v2] refperf: Remove redundant kfree() after
torture_stop_kthread()
On Wed, Sep 10, 2025 at 08:44:19PM +0530, Kaushlendra Kumar wrote:
> Remove unnecessary kfree(main_task) call in ref_scale_cleanup() as
> torture_stop_kthread() already handles the memory cleanup for the
> task structure internally.
>
> The additional kfree(main_task) call after torture_stop_kthread()
> is redundant and confusing since torture_stop_kthread() sets the
> pointer to NULL, making this a no-op.
>
> This pattern is consistent with other torture test modules where
> torture_stop_kthread() is called without explicit kfree() of the
> task pointer, as the torture framework manages the task lifecycle
> internally.
>
> Signed-off-by: Kaushlendra Kumar <kaushlendra.kumar@...el.com>
Queued for further review and testing, thank you!
Thanx, Paul
> ---
> Changes in v2:
> - Corrected commit message based on review feedback
>
> kernel/rcu/refscale.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/kernel/rcu/refscale.c b/kernel/rcu/refscale.c
> index 2c2648a3ad30..2bfa987f4ba9 100644
> --- a/kernel/rcu/refscale.c
> +++ b/kernel/rcu/refscale.c
> @@ -1050,7 +1050,6 @@ ref_scale_cleanup(void)
> kfree(reader_tasks);
>
> torture_stop_kthread("main_task", main_task);
> - kfree(main_task);
>
> // Do scale-type-specific cleanup operations.
> if (cur_ops->cleanup != NULL)
> --
> 2.34.1
>
Powered by blists - more mailing lists