Re: [PATCH v1 03/10] cpufreq: Split cpufreq_online()
From: Viresh Kumar
Date: Tue Apr 01 2025 - 04:44:05 EST
On 01-04-25, 14:08, Viresh Kumar wrote:
> Instead of jumping back to the function, won't declaring the label here and
> jumping from the earlier code to the end of function more readable ?
>
> goto out_unlock;
>
> out_destroy_policy:
> for_each_cpu(j, policy->real_cpus)
> remove_cpu_dev_symlink(policy, j, get_cpu_device(j));
>
> out_offline_policy:
> if (cpufreq_driver->offline)
> cpufreq_driver->offline(policy);
>
> out_exit_policy:
> if (cpufreq_driver->exit)
> cpufreq_driver->exit(policy);
>
> out_clear_policy:
> cpumask_clear(policy->cpus);
>
> out_unlock:
> up_write(&policy->rwsem);
> return ret;
And now I see that after 4/10, it doesn't matter anymore.
--
viresh