public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Can Guo <cang@codeaurora.org>
To: Bean Huo <huobean@gmail.com>
Cc: alim.akhtar@samsung.com, avri.altman@wdc.com,
	asutoshd@codeaurora.org, jejb@linux.ibm.com,
	martin.petersen@oracle.com, stanley.chu@mediatek.com,
	beanhuo@micron.com, bvanassche@acm.org, tomas.winkler@intel.com,
	linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3] scsi: ufs: Replace sprintf and snprintf with sysfs_emit
Date: Thu, 07 Jan 2021 14:08:11 +0800	[thread overview]
Message-ID: <7c6c583a46c157b549d855039566fac9@codeaurora.org> (raw)
In-Reply-To: <20210106211541.23039-1-huobean@gmail.com>

On 2021-01-07 05:15, Bean Huo wrote:
> From: Bean Huo <beanhuo@micron.com>
> 
> sprintf and snprintf may cause output defect in sysfs content, it is
> better to use new added sysfs_emit function which knows the size of the
> temporary buffer.
> 

Reviewed-by: Can Guo <cang@codeaurora.org>

> Reviewed-by: Avri Altman <avri.altman@wdc.com>
> Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Bean Huo <beanhuo@micron.com>
> ---
> Nothing changed in this patch, just take it out from patchset:
> https://patchwork.kernel.org/project/linux-scsi/cover/20201224172010.10701-1-huobean@gmail.com/
> 
> ---
>  drivers/scsi/ufs/ufs-sysfs.c | 30 +++++++++++++++---------------
>  1 file changed, 15 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/scsi/ufs/ufs-sysfs.c 
> b/drivers/scsi/ufs/ufs-sysfs.c
> index 08e72b7eef6a..0e1438485133 100644
> --- a/drivers/scsi/ufs/ufs-sysfs.c
> +++ b/drivers/scsi/ufs/ufs-sysfs.c
> @@ -67,7 +67,7 @@ static ssize_t rpm_lvl_show(struct device *dev,
>  {
>  	struct ufs_hba *hba = dev_get_drvdata(dev);
> 
> -	return sprintf(buf, "%d\n", hba->rpm_lvl);
> +	return sysfs_emit(buf, "%d\n", hba->rpm_lvl);
>  }
> 
>  static ssize_t rpm_lvl_store(struct device *dev,
> @@ -81,7 +81,7 @@ static ssize_t rpm_target_dev_state_show(struct 
> device *dev,
>  {
>  	struct ufs_hba *hba = dev_get_drvdata(dev);
> 
> -	return sprintf(buf, "%s\n", ufschd_ufs_dev_pwr_mode_to_string(
> +	return sysfs_emit(buf, "%s\n", ufschd_ufs_dev_pwr_mode_to_string(
>  			ufs_pm_lvl_states[hba->rpm_lvl].dev_state));
>  }
> 
> @@ -90,7 +90,7 @@ static ssize_t rpm_target_link_state_show(struct 
> device *dev,
>  {
>  	struct ufs_hba *hba = dev_get_drvdata(dev);
> 
> -	return sprintf(buf, "%s\n", ufschd_uic_link_state_to_string(
> +	return sysfs_emit(buf, "%s\n", ufschd_uic_link_state_to_string(
>  			ufs_pm_lvl_states[hba->rpm_lvl].link_state));
>  }
> 
> @@ -99,7 +99,7 @@ static ssize_t spm_lvl_show(struct device *dev,
>  {
>  	struct ufs_hba *hba = dev_get_drvdata(dev);
> 
> -	return sprintf(buf, "%d\n", hba->spm_lvl);
> +	return sysfs_emit(buf, "%d\n", hba->spm_lvl);
>  }
> 
>  static ssize_t spm_lvl_store(struct device *dev,
> @@ -113,7 +113,7 @@ static ssize_t spm_target_dev_state_show(struct 
> device *dev,
>  {
>  	struct ufs_hba *hba = dev_get_drvdata(dev);
> 
> -	return sprintf(buf, "%s\n", ufschd_ufs_dev_pwr_mode_to_string(
> +	return sysfs_emit(buf, "%s\n", ufschd_ufs_dev_pwr_mode_to_string(
>  				ufs_pm_lvl_states[hba->spm_lvl].dev_state));
>  }
> 
> @@ -122,7 +122,7 @@ static ssize_t spm_target_link_state_show(struct
> device *dev,
>  {
>  	struct ufs_hba *hba = dev_get_drvdata(dev);
> 
> -	return sprintf(buf, "%s\n", ufschd_uic_link_state_to_string(
> +	return sysfs_emit(buf, "%s\n", ufschd_uic_link_state_to_string(
>  				ufs_pm_lvl_states[hba->spm_lvl].link_state));
>  }
> 
> @@ -165,7 +165,7 @@ static ssize_t auto_hibern8_show(struct device 
> *dev,
>  	ufshcd_release(hba);
>  	pm_runtime_put_sync(hba->dev);
> 
> -	return scnprintf(buf, PAGE_SIZE, "%d\n", ufshcd_ahit_to_us(ahit));
> +	return sysfs_emit(buf, "%d\n", ufshcd_ahit_to_us(ahit));
>  }
> 
>  static ssize_t auto_hibern8_store(struct device *dev,
> @@ -233,18 +233,18 @@ static ssize_t ufs_sysfs_read_desc_param(struct
> ufs_hba *hba,
>  		return -EINVAL;
>  	switch (param_size) {
>  	case 1:
> -		ret = sprintf(sysfs_buf, "0x%02X\n", *desc_buf);
> +		ret = sysfs_emit(sysfs_buf, "0x%02X\n", *desc_buf);
>  		break;
>  	case 2:
> -		ret = sprintf(sysfs_buf, "0x%04X\n",
> +		ret = sysfs_emit(sysfs_buf, "0x%04X\n",
>  			get_unaligned_be16(desc_buf));
>  		break;
>  	case 4:
> -		ret = sprintf(sysfs_buf, "0x%08X\n",
> +		ret = sysfs_emit(sysfs_buf, "0x%08X\n",
>  			get_unaligned_be32(desc_buf));
>  		break;
>  	case 8:
> -		ret = sprintf(sysfs_buf, "0x%016llX\n",
> +		ret = sysfs_emit(sysfs_buf, "0x%016llX\n",
>  			get_unaligned_be64(desc_buf));
>  		break;
>  	}
> @@ -609,7 +609,7 @@ static ssize_t _name##_show(struct device 
> *dev,				\
>  				      SD_ASCII_STD);			\
>  	if (ret < 0)							\
>  		goto out;						\
> -	ret = snprintf(buf, PAGE_SIZE, "%s\n", desc_buf);		\
> +	ret = sysfs_emit(buf, "%s\n", desc_buf);		\
>  out:									\
>  	pm_runtime_put_sync(hba->dev);					\
>  	kfree(desc_buf);						\
> @@ -659,7 +659,7 @@ static ssize_t _name##_show(struct device 
> *dev,				\
>  	pm_runtime_put_sync(hba->dev);					\
>  	if (ret)							\
>  		return -EINVAL;						\
> -	return sprintf(buf, "%s\n", flag ? "true" : "false"); \
> +	return sysfs_emit(buf, "%s\n", flag ? "true" : "false");	\
>  }									\
>  static DEVICE_ATTR_RO(_name)
> 
> @@ -717,7 +717,7 @@ static ssize_t _name##_show(struct device 
> *dev,				\
>  	pm_runtime_put_sync(hba->dev);					\
>  	if (ret)							\
>  		return -EINVAL;						\
> -	return sprintf(buf, "0x%08X\n", value);				\
> +	return sysfs_emit(buf, "0x%08X\n", value);			\
>  }									\
>  static DEVICE_ATTR_RO(_name)
> 
> @@ -856,7 +856,7 @@ static ssize_t
> dyn_cap_needed_attribute_show(struct device *dev,
>  	pm_runtime_put_sync(hba->dev);
>  	if (ret)
>  		return -EINVAL;
> -	return sprintf(buf, "0x%08X\n", value);
> +	return sysfs_emit(buf, "0x%08X\n", value);
>  }
>  static DEVICE_ATTR_RO(dyn_cap_needed_attribute);

  reply	other threads:[~2021-01-07  6:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-06 21:15 [PATCH v3] scsi: ufs: Replace sprintf and snprintf with sysfs_emit Bean Huo
2021-01-07  6:08 ` Can Guo [this message]
2021-01-08  3:43 ` Martin K. Petersen
2021-01-13  5:48 ` Martin K. Petersen

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=7c6c583a46c157b549d855039566fac9@codeaurora.org \
    --to=cang@codeaurora.org \
    --cc=alim.akhtar@samsung.com \
    --cc=asutoshd@codeaurora.org \
    --cc=avri.altman@wdc.com \
    --cc=beanhuo@micron.com \
    --cc=bvanassche@acm.org \
    --cc=huobean@gmail.com \
    --cc=jejb@linux.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=stanley.chu@mediatek.com \
    --cc=tomas.winkler@intel.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