[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <c85dbd27-7536-9c51-19a2-fe1c2c6342b9@samsung.com>
Date: Tue, 20 Aug 2019 09:23:23 +0900
From: Chanwoo Choi <cw00.choi@...sung.com>
To: Dmitry Osipenko <digetx@...il.com>,
Thierry Reding <thierry.reding@...il.com>,
MyungJoo Ham <myungjoo.ham@...sung.com>,
Kyungmin Park <kyungmin.park@...sung.com>,
Jonathan Hunter <jonathanh@...dia.com>,
Tomeu Vizoso <tomeu.vizoso@...labora.com>
Cc: linux-pm@...r.kernel.org, linux-tegra@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v6 08/19] PM / devfreq: tegra30: Ensure that target freq
won't overflow
On 19. 8. 12. 오전 6:23, Dmitry Osipenko wrote:
> We already had few integer overflow bugs, let's limit the freq for
> consistency.
>
> Signed-off-by: Dmitry Osipenko <digetx@...il.com>
> ---
> drivers/devfreq/tegra30-devfreq.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/devfreq/tegra30-devfreq.c b/drivers/devfreq/tegra30-devfreq.c
> index 70dce58212a4..ca499368ee81 100644
> --- a/drivers/devfreq/tegra30-devfreq.c
> +++ b/drivers/devfreq/tegra30-devfreq.c
> @@ -430,7 +430,7 @@ static unsigned long actmon_update_target(struct tegra_devfreq *tegra,
> target_freq = dev->avg_count / ACTMON_SAMPLING_PERIOD + dev->boost_freq;
> target_freq = tegra_actmon_account_cpu_freq(tegra, dev, target_freq);
>
> - return target_freq;
> + return min(target_freq, tegra->max_freq);
Once again, did you meet this case sometimes?
Usually, we can prevent the overflow of target_freq
when calculating the target frequency or this style.
I think that if the overflow of target frequency happen frequently,
it might have the problem of calculation way.
> }
>
> static irqreturn_t actmon_thread_isr(int irq, void *data)
>
--
Best Regards,
Chanwoo Choi
Samsung Electronics
Powered by blists - more mailing lists