From: Jie Zhan <zhanjie9@hisilicon.com>
To: <cwchoi00@gmail.com>, <cw00.choi@samsung.com>,
<myungjoo.ham@samsung.com>, <kyungmin.park@samsung.com>,
<linux-pm@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>
Cc: <linuxarm@huawei.com>, <tianyaxiong@kylinos.cn>,
<zhanjie9@hisilicon.com>, <zhenglifeng1@huawei.com>,
<zhangpengjie2@huawei.com>, <lihuisong@huawei.com>,
<prime.zeng@hisilicon.com>
Subject: [PATCH v2 6/6] devfreq: Get module refcount in try_then_request_governor()
Date: Wed, 13 May 2026 17:38:32 +0800 [thread overview]
Message-ID: <20260513093832.1645890-7-zhanjie9@hisilicon.com> (raw)
In-Reply-To: <20260513093832.1645890-1-zhanjie9@hisilicon.com>
Get a refcount of the governor module in try_then_request_governor() so
that the governor module cannot be unloaded between finding the governor
and the caller using it.
Signed-off-by: Jie Zhan <zhanjie9@hisilicon.com>
---
drivers/devfreq/devfreq.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
index 2ea42325d030..fb1a7aa168aa 100644
--- a/drivers/devfreq/devfreq.c
+++ b/drivers/devfreq/devfreq.c
@@ -285,6 +285,9 @@ static struct devfreq_governor *find_devfreq_governor(const char *name)
* and the driver that call devfreq_add_device) are built as modules.
* devfreq_list_lock should be held by the caller. Returns the matched
* governor's pointer or an error pointer.
+ * On success, this holds a refcount of the governor module to prevent the
+ * module from being unloaded during usage, so the caller should put a module
+ * refcount after using it.
*/
static struct devfreq_governor *try_then_request_governor(const char *name)
{
@@ -313,8 +316,13 @@ static struct devfreq_governor *try_then_request_governor(const char *name)
return (err < 0) ? ERR_PTR(err) : ERR_PTR(-EINVAL);
governor = find_devfreq_governor(name);
+ if (IS_ERR(governor))
+ return governor;
}
+ if (!try_module_get(governor->owner))
+ return ERR_PTR(-EBUSY);
+
return governor;
}
@@ -1009,6 +1017,7 @@ struct devfreq *devfreq_add_device(struct device *dev,
}
err = devfreq_set_governor(devfreq, governor);
+ module_put(governor->owner);
if (err) {
dev_err_probe(dev, err,
"%s: Unable to start governor for the device\n",
@@ -1446,6 +1455,7 @@ static ssize_t governor_store(struct device *dev, struct device_attribute *attr,
return PTR_ERR(governor);
ret = devfreq_set_governor(df, governor);
+ module_put(governor->owner);
if (ret)
return ret;
--
2.43.0
prev parent reply other threads:[~2026-05-13 9:43 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-13 9:38 [PATCH v2 0/6] devfreq: Add refcounts for governor modules Jie Zhan
2026-05-13 9:38 ` [PATCH v2 1/6] devfreq: Use mutex guard in governor_store() Jie Zhan
2026-05-14 6:02 ` Yaxiong Tian
2026-05-13 9:38 ` [PATCH v2 2/6] devfreq: Use mutex guard in devfreq_add/remove_governor() Jie Zhan
2026-05-14 6:02 ` Yaxiong Tian
2026-05-13 9:38 ` [PATCH v2 3/6] devfreq: Factor out devfreq_set_governor() Jie Zhan
2026-05-14 6:09 ` Yaxiong Tian
2026-05-15 10:32 ` Jie Zhan
2026-05-13 9:38 ` [PATCH v2 4/6] devfreq: Add module owner to devfreq governor Jie Zhan
2026-05-14 6:14 ` Yaxiong Tian
2026-05-15 10:32 ` Jie Zhan
2026-05-13 9:38 ` [PATCH v2 5/6] devfreq: Get and put module refcount when switching governor Jie Zhan
2026-05-14 6:50 ` Yaxiong Tian
2026-05-15 10:39 ` Jie Zhan
2026-05-13 9:38 ` Jie Zhan [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260513093832.1645890-7-zhanjie9@hisilicon.com \
--to=zhanjie9@hisilicon.com \
--cc=cw00.choi@samsung.com \
--cc=cwchoi00@gmail.com \
--cc=kyungmin.park@samsung.com \
--cc=lihuisong@huawei.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-pm@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=myungjoo.ham@samsung.com \
--cc=prime.zeng@hisilicon.com \
--cc=tianyaxiong@kylinos.cn \
--cc=zhangpengjie2@huawei.com \
--cc=zhenglifeng1@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox