Re: [PATCH 07/13] opp: Allow _generic_set_opp_clk_only() to work for non-freq devices
From: Viresh Kumar <viresh.kumar@linaro.org>
Date: 2021-01-27 07:00:56
Also in:
linux-pm, linux-tegra, lkml
From: Viresh Kumar <viresh.kumar@linaro.org>
Date: 2021-01-27 07:00:56
Also in:
linux-pm, linux-tegra, lkml
On 26-01-21, 00:09, Dmitry Osipenko wrote:
Please remove unlikely() around IS_ERR(), it already has the unlikely().
Right.
https://elixir.bootlin.com/linux/v5.11-rc4/source/include/linux/err.h#L22 I'd also recommend to remove all the unlikely() from OPP code since it doesn't bring any value if not used in a very performance-critical code path. OPP core doesn't have such code paths. The [un]likely() only make code less readable and may result in a worse assembly.
The likely/unlikely() stuff is to optimize code, not necessarily the stuff in the hot path alone, therwise stuff like IS_ERR() would never have it. It surely does bring value by optimizing the code, surely the result isn't significant enough but that is fine, every effort counts. AFAIK, if we are sure of path the code will almost always take, then we should rather use these and so I am inclined towards keeping them. Though I understand that using them may result in bad behavior (performance) if they fail. -- viresh _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel