linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [bug report] thermal/drivers/intel: Use generic trip points int340x
@ 2023-01-24 15:12 Dan Carpenter
  2023-01-24 16:31 ` [PATCH] thermal/drivers/int340x: Fix uninitialized trip_cnt variable Daniel Lezcano
  0 siblings, 1 reply; 3+ messages in thread
From: Dan Carpenter @ 2023-01-24 15:12 UTC (permalink / raw)
  To: daniel.lezcano; +Cc: linux-pm

Hello Daniel Lezcano,

The patch 0d568e144ead: "thermal/drivers/intel: Use generic trip
points int340x" from Jan 13, 2023, leads to the following Smatch
static checker warning:

	drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c:137 int340x_thermal_zone_add()
	error: uninitialized symbol 'trip_cnt'.

drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
    127         if (get_temp)
    128                 int34x_thermal_zone->ops->get_temp = get_temp;
    129 
    130         status = acpi_evaluate_integer(adev->handle, "PATC", NULL, &trip_cnt);
    131         if (!ACPI_FAILURE(status)) {
    132                 int34x_thermal_zone->aux_trip_nr = trip_cnt;
    133                 trip_mask = BIT(trip_cnt) - 1;
    134         }

"trip_cnt" not initialized on error path.

    135 
    136         int34x_thermal_zone->trips = kzalloc(sizeof(*int34x_thermal_zone->trips) *
--> 137                                              (INT340X_THERMAL_MAX_TRIP_COUNT + trip_cnt),
                                                                                       ^^^^^^^^

    138                                               GFP_KERNEL);
    139         if (!int34x_thermal_zone->trips) {
    140                 ret = -ENOMEM;
    141                 goto err_trips_alloc;
    142         }
    143 
    144         trip_cnt = int340x_thermal_read_trips(int34x_thermal_zone);
    145 
    146         for (i = 0; i < trip_cnt; ++i)
    147                 int34x_thermal_zone->trips[i].hysteresis = thermal_acpi_trip_gtsh(adev);

regards,
dan carpenter

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] thermal/drivers/int340x: Fix uninitialized trip_cnt variable
  2023-01-24 15:12 [bug report] thermal/drivers/intel: Use generic trip points int340x Dan Carpenter
@ 2023-01-24 16:31 ` Daniel Lezcano
  2023-01-24 16:41   ` Rafael J. Wysocki
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Lezcano @ 2023-01-24 16:31 UTC (permalink / raw)
  To: rafael
  Cc: error27, Amit Kucheria, Zhang Rui, Srinivas Pandruvada,
	open list:THERMAL, open list

The conversion to the generic trip points missed to initializes the
extra trip points to zero in case the _PATC method is not found.

Set by default the trip_cnt to zero.

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c b/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
index 7ff5d9b1c490..c113962a599e 100644
--- a/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
+++ b/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
@@ -121,7 +121,7 @@ struct int34x_thermal_zone *int340x_thermal_zone_add(struct acpi_device *adev,
 {
 	struct int34x_thermal_zone *int34x_thermal_zone;
 	acpi_status status;
-	unsigned long long trip_cnt;
+	unsigned long long trip_cnt = 0;
 	int trip_mask = 0;
 	int i, ret;
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] thermal/drivers/int340x: Fix uninitialized trip_cnt variable
  2023-01-24 16:31 ` [PATCH] thermal/drivers/int340x: Fix uninitialized trip_cnt variable Daniel Lezcano
@ 2023-01-24 16:41   ` Rafael J. Wysocki
  0 siblings, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2023-01-24 16:41 UTC (permalink / raw)
  To: Daniel Lezcano
  Cc: rafael, error27, Amit Kucheria, Zhang Rui, Srinivas Pandruvada,
	open list:THERMAL, open list

On Tue, Jan 24, 2023 at 5:35 PM Daniel Lezcano
<daniel.lezcano@linaro.org> wrote:
>
> The conversion to the generic trip points missed to initializes the
> extra trip points to zero in case the _PATC method is not found.

The _PATC name is incorrect.

> Set by default the trip_cnt to zero.
>
> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
> ---
>  drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c b/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
> index 7ff5d9b1c490..c113962a599e 100644
> --- a/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
> +++ b/drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
> @@ -121,7 +121,7 @@ struct int34x_thermal_zone *int340x_thermal_zone_add(struct acpi_device *adev,
>  {
>         struct int34x_thermal_zone *int34x_thermal_zone;
>         acpi_status status;
> -       unsigned long long trip_cnt;
> +       unsigned long long trip_cnt = 0;
>         int trip_mask = 0;
>         int i, ret;
>
> --

I've just posted an equivalent fix and I prefer mine.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-01-24 16:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-24 15:12 [bug report] thermal/drivers/intel: Use generic trip points int340x Dan Carpenter
2023-01-24 16:31 ` [PATCH] thermal/drivers/int340x: Fix uninitialized trip_cnt variable Daniel Lezcano
2023-01-24 16:41   ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).