From: Bart Van Assche <bvanassche@acm.org>
To: Maramaina Naresh <quic_mnaresh@quicinc.com>,
"James E.J. Bottomley" <jejb@linux.ibm.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
Peter Wang <peter.wang@mediatek.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>
Cc: Alim Akhtar <alim.akhtar@samsung.com>,
Avri Altman <avri.altman@wdc.com>,
Stanley Jhu <chu.stanley@gmail.com>,
linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-arm-kernel@lists.infradead.org, quic_cang@quicinc.com,
quic_nguyenb@quicinc.com
Subject: Re: [PATCH V5 1/2] ufs: core: Add CPU latency QoS support for ufs driver
Date: Mon, 18 Dec 2023 13:55:51 -0800 [thread overview]
Message-ID: <9861ce52-8163-40aa-b156-dd656143a73d@acm.org> (raw)
In-Reply-To: <20231213124353.16407-2-quic_mnaresh@quicinc.com>
On 12/13/23 04:43, Maramaina Naresh wrote:
> +static ssize_t ufshcd_pm_qos_enable_store(struct device *dev,
> + struct device_attribute *attr, const char *buf, size_t count)
> +{
> + struct ufs_hba *hba = dev_get_drvdata(dev);
> + u32 value;
> +
> + if (kstrtou32(buf, 0, &value))
> + return -EINVAL;
> +
> + value = !!value;
> + if (value)
> + ufshcd_pm_qos_init(hba);
> + else
> + ufshcd_pm_qos_exit(hba);
> +
> + return count;
> +}
Please use kstrtobool() instead of kstrtou32().
> +static void ufshcd_init_pm_qos_sysfs(struct ufs_hba *hba)
> +{
> + hba->pm_qos_enable_attr.show = ufshcd_pm_qos_enable_show;
> + hba->pm_qos_enable_attr.store = ufshcd_pm_qos_enable_store;
> + sysfs_attr_init(&hba->pm_qos_enable_attr.attr);
> + hba->pm_qos_enable_attr.attr.name = "pm_qos_enable";
> + hba->pm_qos_enable_attr.attr.mode = 0644;
> + if (device_create_file(hba->dev, &hba->pm_qos_enable_attr))
> + dev_err(hba->dev, "Failed to create sysfs for pm_qos_enable\n");
> +}
Calling device_create_file() and device_remove_file() is not acceptable because of
the race conditions these calls introduce for udev rules. Please add this attribute
into an existing group and update the is_visible callback function of that group.
See also ufs_sysfs_groups[].
Thanks,
Bart.
next prev parent reply other threads:[~2023-12-18 21:56 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-13 12:43 [PATCH V5 0/2] Add CPU latency QoS support for ufs driver Maramaina Naresh
2023-12-13 12:43 ` [PATCH V5 1/2] ufs: core: " Maramaina Naresh
2023-12-15 6:58 ` Peter Wang (王信友)
2023-12-18 21:55 ` Bart Van Assche [this message]
2023-12-13 12:43 ` [PATCH V5 2/2] ufs: ufs-mediatek: Migrate to UFSHCD generic CPU latency PM QoS support Maramaina Naresh
2023-12-15 6:59 ` Peter Wang (王信友)
2023-12-15 9:05 ` [PATCH V5 0/2] Add CPU latency QoS support for ufs driver Avri Altman
2023-12-17 17:03 ` Naresh Maramaina
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=9861ce52-8163-40aa-b156-dd656143a73d@acm.org \
--to=bvanassche@acm.org \
--cc=alim.akhtar@samsung.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=avri.altman@wdc.com \
--cc=chu.stanley@gmail.com \
--cc=jejb@linux.ibm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=matthias.bgg@gmail.com \
--cc=peter.wang@mediatek.com \
--cc=quic_cang@quicinc.com \
--cc=quic_mnaresh@quicinc.com \
--cc=quic_nguyenb@quicinc.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