lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <88069c938a06b06f89cc4662cef3c1be@codeaurora.org>
Date:   Mon, 28 Dec 2020 09:50:30 +0800
From:   Can Guo <cang@...eaurora.org>
To:     Bean Huo <huobean@...il.com>
Cc:     alim.akhtar@...sung.com, avri.altman@....com,
        asutoshd@...eaurora.org, jejb@...ux.ibm.com,
        martin.petersen@...cle.com, stanley.chu@...iatek.com,
        beanhuo@...ron.com, bvanassche@....org, tomas.winkler@...el.com,
        linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org,
        rjw@...ysocki.net
Subject: Re: [PATCH v2 2/3] scsi: ufs: Add handling of the return value of
 pm_runtime_get_sync()

On 2020-12-25 01:20, Bean Huo wrote:
> From: Bean Huo <beanhuo@...ron.com>
> 
> The race issue may exist between UFS access in UFS sysfs context and 
> UFS
> shutdown, thus will cause pm_runtime_get_sync() resume failure.

Are you trying to fix the race condition by adding these checks or just
adding these checks in case pm_runtime_get_sync() fails?

Can Guo.

> Add handling of the return value of pm_runtime_get_sync(). Let it 
> return
> in case pm_runtime_get_sync() resume failed.
> 
> Signed-off-by: Bean Huo <beanhuo@...ron.com>
> ---
>  drivers/scsi/ufs/ufs-sysfs.c | 38 ++++++++++++++++++++++++++++++------
>  1 file changed, 32 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/scsi/ufs/ufs-sysfs.c 
> b/drivers/scsi/ufs/ufs-sysfs.c
> index 0e1438485133..8e5e36e01bee 100644
> --- a/drivers/scsi/ufs/ufs-sysfs.c
> +++ b/drivers/scsi/ufs/ufs-sysfs.c
> @@ -154,12 +154,17 @@ static ssize_t auto_hibern8_show(struct device 
> *dev,
>  				 struct device_attribute *attr, char *buf)
>  {
>  	u32 ahit;
> +	int ret;
>  	struct ufs_hba *hba = dev_get_drvdata(dev);
> 
>  	if (!ufshcd_is_auto_hibern8_supported(hba))
>  		return -EOPNOTSUPP;
> 
> -	pm_runtime_get_sync(hba->dev);
> +	ret = pm_runtime_get_sync(hba->dev);
> +	if (ret < 0) {
> +		pm_runtime_put_noidle(hba->dev);
> +		return ret;
> +	}
>  	ufshcd_hold(hba, false);
>  	ahit = ufshcd_readl(hba, REG_AUTO_HIBERNATE_IDLE_TIMER);
>  	ufshcd_release(hba);
> @@ -225,7 +230,12 @@ static ssize_t ufs_sysfs_read_desc_param(struct
> ufs_hba *hba,
>  	if (param_size > 8)
>  		return -EINVAL;
> 
> -	pm_runtime_get_sync(hba->dev);
> +	ret = pm_runtime_get_sync(hba->dev);
> +	if (ret < 0) {
> +		pm_runtime_put_noidle(hba->dev);
> +		return ret;
> +	}
> +
>  	ret = ufshcd_read_desc_param(hba, desc_id, desc_index,
>  				param_offset, desc_buf, param_size);
>  	pm_runtime_put_sync(hba->dev);
> @@ -594,7 +604,11 @@ static ssize_t _name##_show(struct device 
> *dev,				\
>  	desc_buf = kzalloc(QUERY_DESC_MAX_SIZE, GFP_ATOMIC);		\
>  	if (!desc_buf)                                                  \
>  		return -ENOMEM;                                         \
> -	pm_runtime_get_sync(hba->dev);					\
> +	ret = pm_runtime_get_sync(hba->dev);				\
> +	if (ret < 0) {							\
> +		pm_runtime_put_noidle(hba->dev);			\
> +		return ret;						\
> +	}								\
>  	ret = ufshcd_query_descriptor_retry(hba,			\
>  		UPIU_QUERY_OPCODE_READ_DESC, QUERY_DESC_IDN_DEVICE,	\
>  		0, 0, desc_buf, &desc_len);				\
> @@ -653,7 +667,11 @@ static ssize_t _name##_show(struct device 
> *dev,				\
>  	struct ufs_hba *hba = dev_get_drvdata(dev);			\
>  	if (ufshcd_is_wb_flags(QUERY_FLAG_IDN##_uname))			\
>  		index = ufshcd_wb_get_query_index(hba);			\
> -	pm_runtime_get_sync(hba->dev);					\
> +	ret = pm_runtime_get_sync(hba->dev);				\
> +	if (ret < 0) {							\
> +		pm_runtime_put_noidle(hba->dev);			\
> +		return ret;						\
> +	}								\
>  	ret = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_READ_FLAG,	\
>  		QUERY_FLAG_IDN##_uname, index, &flag);			\
>  	pm_runtime_put_sync(hba->dev);					\
> @@ -711,7 +729,11 @@ static ssize_t _name##_show(struct device 
> *dev,				\
>  	u8 index = 0;							\
>  	if (ufshcd_is_wb_attrs(QUERY_ATTR_IDN##_uname))			\
>  		index = ufshcd_wb_get_query_index(hba);			\
> -	pm_runtime_get_sync(hba->dev);					\
> +	ret = pm_runtime_get_sync(hba->dev);				\
> +	if (ret < 0) {							\
> +		pm_runtime_put_noidle(hba->dev);			\
> +		return ret;						\
> +	}								\
>  	ret = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_READ_ATTR,	\
>  		QUERY_ATTR_IDN##_uname, index, 0, &value);		\
>  	pm_runtime_put_sync(hba->dev);					\
> @@ -850,7 +872,11 @@ static ssize_t
> dyn_cap_needed_attribute_show(struct device *dev,
>  	u8 lun = ufshcd_scsi_to_upiu_lun(sdev->lun);
>  	int ret;
> 
> -	pm_runtime_get_sync(hba->dev);
> +	ret = pm_runtime_get_sync(hba->dev);
> +	if (ret < 0) {
> +		pm_runtime_put_noidle(hba->dev);
> +		return ret;
> +	}
>  	ret = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_READ_ATTR,
>  		QUERY_ATTR_IDN_DYN_CAP_NEEDED, lun, 0, &value);
>  	pm_runtime_put_sync(hba->dev);

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ