Re: [PATCH] sched/topology: avoid calling synchronize_rcu()

From: Valentin Schneider
Date: Wed Mar 02 2022 - 09:20:12 EST


On 02/03/22 01:14, cgel.zte@xxxxxxxxx wrote:
> From: Lv Ruyi (CGEL ZTE) <lv.ruyi@xxxxxxxxxx>
>
> Kfree_rcu() usually results in even simpler code than does
> synchronize_rcu() without synchronize_rcu()'s multi-millisecond
> latency, so replace synchronize_rcu() with kfree_rcu().
>
> Reported-by: Zeal Robot <zealci@xxxxxxxxxx>
> Signed-off-by: Lv Ruyi (CGEL ZTE) <lv.ruyi@xxxxxxxxxx>
> ---
> kernel/sched/topology.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c
> index 974212620fa1..0ce302b4d732 100644
> --- a/kernel/sched/topology.c
> +++ b/kernel/sched/topology.c
> @@ -1970,8 +1970,7 @@ static void sched_reset_numa(void)
> if (distances || masks) {
> int i, j;
>
> - synchronize_rcu();
> - kfree(distances);
> + kfree_rcu(distances);

What about the freeing of the cpumasks below? You don't want to free those
before the end of the grace period either. With that in mind, I think the
current synchronize_rcu() + batch of kfree()'s is fine, it's a slow path
anyway (hotplug).


> for (i = 0; i < nr_levels && masks; i++) {
> if (!masks[i])
> continue;
> --
> 2.25.1