Patch "thermal/core/thermal_of: Stop zone device before unregistering it" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    thermal/core/thermal_of: Stop zone device before unregistering it

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     thermal-core-thermal_of-stop-zone-device-before-unre.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit f4d91b8aad638cfefd9cc834ae3c35ed0bf0a390
Author: Dmitry Osipenko <digetx@xxxxxxxxx>
Date:   Wed Jun 16 22:04:13 2021 +0300

    thermal/core/thermal_of: Stop zone device before unregistering it
    
    [ Upstream commit 5e5c9f9a75fc4532980c2e699caf8a36070a3a2e ]
    
    Zone device is enabled after thermal_zone_of_sensor_register() completion,
    but it's not disabled before senor is unregistered, leaving temperature
    polling active. This results in accessing a disabled zone device and
    produces a warning about this problem. Stop zone device before
    unregistering it in order to fix this "use-after-free" problem.
    
    Signed-off-by: Dmitry Osipenko <digetx@xxxxxxxxx>
    Signed-off-by: Daniel Lezcano <daniel.lezcano@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20210616190417.32214-3-digetx@xxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/thermal/thermal_of.c b/drivers/thermal/thermal_of.c
index 5b76f9a1280d..6379f26a335f 100644
--- a/drivers/thermal/thermal_of.c
+++ b/drivers/thermal/thermal_of.c
@@ -559,6 +559,9 @@ void thermal_zone_of_sensor_unregister(struct device *dev,
 	if (!tz)
 		return;
 
+	/* stop temperature polling */
+	thermal_zone_device_disable(tzd);
+
 	mutex_lock(&tzd->lock);
 	tzd->ops->get_temp = NULL;
 	tzd->ops->get_trend = NULL;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux