lkml.org 
[lkml]   [2018]   [Apr]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/6] PM / devfreq: Use the device release function for cleanup
Date
Removing the devfreq from the devfreq_list before calling unregister
causes the device's release function to not find the devfreq and as such
bails from the release function, resulting in the following log
entries if an invalid governor is specified.

ufshcd-qcom 624000.ufshc: devfreq_add_device: Unable to find governor for the device
devfreq devfreq0: releasing devfreq which doesn't exist

Drop the removal of devfreq from the list.

As the release function will end by freeing the devfreq context we have
to skip the freeing of this in our error handler, and hence need to pull
in the device_unregister() calls.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
---
drivers/devfreq/devfreq.c | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
index 30a672397ff0..d5b278b8f20e 100644
--- a/drivers/devfreq/devfreq.c
+++ b/drivers/devfreq/devfreq.c
@@ -647,8 +647,10 @@ struct devfreq *devfreq_add_device(struct device *dev,
if (IS_ERR(governor)) {
dev_err(dev, "%s: Unable to find governor for the device\n",
__func__);
+ mutex_unlock(&devfreq_list_lock);
+ device_unregister(&devfreq->dev);
err = PTR_ERR(governor);
- goto err_init;
+ goto err_out;
}

devfreq->governor = governor;
@@ -657,17 +659,14 @@ struct devfreq *devfreq_add_device(struct device *dev,
if (err) {
dev_err(dev, "%s: Unable to start governor for the device\n",
__func__);
- goto err_init;
+ mutex_unlock(&devfreq_list_lock);
+ device_unregister(&devfreq->dev);
+ goto err_out;
}
mutex_unlock(&devfreq_list_lock);

return devfreq;

-err_init:
- list_del(&devfreq->node);
- mutex_unlock(&devfreq_list_lock);
-
- device_unregister(&devfreq->dev);
err_dev:
mutex_destroy(&devfreq->lock);
kfree(devfreq);
--
2.16.2
\
 
 \ /
  Last update: 2018-04-25 00:37    [W:0.035 / U:0.220 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site