lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAJZ5v0hcqw37cVT4Hd2f8Rv-HEnZX=+N+2zR0hGhDD9nPxJ2zA@mail.gmail.com>
Date: Mon, 25 Nov 2024 15:11:12 +0100
From: "Rafael J. Wysocki" <rafael@...nel.org>
To: Srinivas Pandruvada <srinivas.pandruvada@...ux.intel.com>
Cc: rafael@...nel.org, rui.zhang@...el.com, daniel.lezcano@...aro.org, 
	lukasz.luba@....com, linux-pm@...r.kernel.org, linux-kernel@...r.kernel.org, 
	stable@...r.kernel.org
Subject: Re: [PATCH] thermal: int3400: Fix display of current_uuid for active policy

On Fri, Nov 15, 2024 at 4:42 AM Srinivas Pandruvada
<srinivas.pandruvada@...ux.intel.com> wrote:
>
> When the current_uuid attribute is set to active policy UUID, reading
> back the same attribute is displaying uuid as "INVALID" instead of active
> policy UUID on some platforms before Ice Lake.
>
> In platforms before Ice Lake, firmware provides list of supported thermal
> policies. In this case user space can select any of the supported thermal
> policy via a write to attribute "current_uuid".
>
> With the 'commit c7ff29763989 ("thermal: int340x: Update OS policy
> capability handshake")', OS policy handshake is updated to support
> Ice Lake and later platforms. But this treated priv->current_uuid_index=0
> as invalid. This priv->current_uuid_index=0 is for active policy.
> Only priv->current_uuid_index=-1 is invalid.
>
> Fix this issue by treating priv->current_uuid_index=0 as valid.
>
> Fixes: c7ff29763989 ("thermal: int340x: Update OS policy capability handshake")
> Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@...ux.intel.com>
> CC: stable@...r.kernel.org # 5.18+
> ---
>  drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> index b0c0f0ffdcb0..f547d386ae80 100644
> --- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> +++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> @@ -137,7 +137,7 @@ static ssize_t current_uuid_show(struct device *dev,
>         struct int3400_thermal_priv *priv = dev_get_drvdata(dev);
>         int i, length = 0;
>
> -       if (priv->current_uuid_index > 0)
> +       if (priv->current_uuid_index >= 0)
>                 return sprintf(buf, "%s\n",
>                                int3400_thermal_uuids[priv->current_uuid_index]);
>
> --

Applied as 6.13-rc material, thanks!

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ