Re: [PATCH v2 1/8] cpufreq: tegra186: add OPP support and set bandwidth

From: Viresh Kumar

Date: Tue Sep 30 2025 - 06:30:09 EST


On 09-09-25, 01:21, Aaron Kling via B4 Relay wrote:
> +static int tegra_cpufreq_set_bw(struct cpufreq_policy *policy, unsigned long freq_khz)
> +{
> + struct tegra186_cpufreq_data *data = cpufreq_get_driver_data();
> + struct dev_pm_opp *opp __free(put_opp);

The usage here looks incorrect..

> + struct device *dev;
> + int ret;
> +
> + dev = get_cpu_device(policy->cpu);
> + if (!dev)
> + return -ENODEV;

On failure, we would return from here with a garbage `opp` pointer, which the
OPP core may try to free ?

Moving the variable definition here would fix that.

> +
> + opp = dev_pm_opp_find_freq_exact(dev, freq_khz * HZ_PER_KHZ, true);
> + if (IS_ERR(opp))
> + return PTR_ERR(opp);
> +
> + ret = dev_pm_opp_set_opp(dev, opp);
> + if (ret)
> + data->icc_dram_bw_scaling = false;
> +
> + return ret;
> +}

--
viresh