]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
thermal: core: Initialize thermal zones before registering them
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 4 Oct 2024 19:05:49 +0000 (21:05 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 5 Dec 2024 12:52:50 +0000 (13:52 +0100)
[ Upstream commit 662f920f7e390db5d1a6792a2b0ffa59b6c962fc ]

Since user space can start interacting with a new thermal zone as soon
as device_register() called by thermal_zone_device_register_with_trips()
returns, it is better to initialize the thermal zone before calling
device_register() on it.

Fixes: d0df264fbd3c ("thermal/core: Remove pointless thermal_zone_device_reset() function")
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://patch.msgid.link/3336146.44csPzL39Z@rjwysocki.net
Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/thermal/thermal_core.c

index 795be67ca878b46a6c70c55b99add2f56552919c..2f9128cf55e920abcbc16d4fd169d8f3e2bac23c 100644 (file)
@@ -1498,6 +1498,7 @@ thermal_zone_device_register_with_trips(const char *type,
                thermal_zone_destroy_device_groups(tz);
                goto remove_id;
        }
+       thermal_zone_device_init(tz);
        result = device_register(&tz->device);
        if (result)
                goto release_device;
@@ -1543,7 +1544,6 @@ thermal_zone_device_register_with_trips(const char *type,
 
        mutex_unlock(&thermal_list_lock);
 
-       thermal_zone_device_init(tz);
        /* Update the new thermal zone and mark it as already updated. */
        if (atomic_cmpxchg(&tz->need_update, 1, 0))
                thermal_zone_device_update(tz, THERMAL_EVENT_UNSPECIFIED);