public inbox for linux-pm@vger.kernel.org
 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

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