From: Yaxiong Tian <tianyaxiong@kylinos.cn>
To: Jie Zhan <zhanjie9@hisilicon.com>,
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, zhenglifeng1@huawei.com,
zhangpengjie2@huawei.com, lihuisong@huawei.com,
prime.zeng@hisilicon.com
Subject: Re: [PATCH v2 1/6] devfreq: Use mutex guard in governor_store()
Date: Thu, 14 May 2026 14:02:24 +0800 [thread overview]
Message-ID: <dc3cda4f-8e4e-4d6a-94a4-d5b34d481204@kylinos.cn> (raw)
In-Reply-To: <20260513093832.1645890-2-zhanjie9@hisilicon.com>
在 2026/5/13 17:38, Jie Zhan 写道:
> Use mutex guard in governor_store() so as to simplify the locking logic.
>
> No functional impact intended.
>
> Signed-off-by: Jie Zhan <zhanjie9@hisilicon.com>
> ---
> drivers/devfreq/devfreq.c | 38 ++++++++++++++++----------------------
> 1 file changed, 16 insertions(+), 22 deletions(-)
>
> diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
> index f08fc6966eae..7a70dd051644 100644
> --- a/drivers/devfreq/devfreq.c
> +++ b/drivers/devfreq/devfreq.c
> @@ -1394,23 +1394,20 @@ static ssize_t governor_store(struct device *dev, struct device_attribute *attr,
> if (ret != 1)
> return -EINVAL;
>
> - mutex_lock(&devfreq_list_lock);
> + guard(mutex)(&devfreq_list_lock);
> governor = try_then_request_governor(str_governor);
> - if (IS_ERR(governor)) {
> - ret = PTR_ERR(governor);
> - goto out;
> - }
> + if (IS_ERR(governor))
> + return PTR_ERR(governor);
> +
> if (!df->governor)
> goto start_new_governor;
>
> - if (df->governor == governor) {
> - ret = 0;
> - goto out;
> - } else if (IS_SUPPORTED_FLAG(df->governor->flags, IMMUTABLE)
> - || IS_SUPPORTED_FLAG(governor->flags, IMMUTABLE)) {
> - ret = -EINVAL;
> - goto out;
> - }
> + if (df->governor == governor)
> + return count;
> +
> + if (IS_SUPPORTED_FLAG(df->governor->flags, IMMUTABLE) ||
> + IS_SUPPORTED_FLAG(governor->flags, IMMUTABLE))
> + return -EINVAL;
>
> /*
> * Stop the current governor and remove the specific sysfs files
> @@ -1420,7 +1417,7 @@ static ssize_t governor_store(struct device *dev, struct device_attribute *attr,
> if (ret) {
> dev_warn(dev, "%s: Governor %s not stopped(%d)\n",
> __func__, df->governor->name, ret);
> - goto out;
> + return ret;
> }
>
> start_new_governor:
> @@ -1438,7 +1435,7 @@ static ssize_t governor_store(struct device *dev, struct device_attribute *attr,
> /* Restore previous governor */
> df->governor = prev_governor;
> if (!df->governor)
> - goto out;
> + return ret;
>
> ret = df->governor->event_handler(df, DEVFREQ_GOV_START, NULL);
> if (ret) {
> @@ -1446,7 +1443,7 @@ static ssize_t governor_store(struct device *dev, struct device_attribute *attr,
> "%s: reverting to Governor %s failed (%d)\n",
> __func__, prev_governor->name, ret);
> df->governor = NULL;
> - goto out;
> + return ret;
> }
> }
>
> @@ -1455,13 +1452,10 @@ static ssize_t governor_store(struct device *dev, struct device_attribute *attr,
> * the new governor, restore the sysfs files of previous governor.
> */
> ret = sysfs_update_group(&df->dev.kobj, &gov_attr_group);
> + if (ret)
> + return ret;
>
> -out:
> - mutex_unlock(&devfreq_list_lock);
> -
> - if (!ret)
> - ret = count;
> - return ret;
> + return count;
> }
> static DEVICE_ATTR_RW(governor);
>
Reviewed-by: Yaxiong Tian <tianyaxiong@kylinos.cn>
next prev parent reply other threads:[~2026-05-14 6:02 UTC|newest]
Thread overview: 12+ 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 [this message]
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-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-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-13 9:38 ` [PATCH v2 6/6] devfreq: Get module refcount in try_then_request_governor() Jie Zhan
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=dc3cda4f-8e4e-4d6a-94a4-d5b34d481204@kylinos.cn \
--to=tianyaxiong@kylinos.cn \
--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=zhangpengjie2@huawei.com \
--cc=zhanjie9@hisilicon.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