mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-25 12:00:22 +09:00
FROMGIT: scsi: ufs: Use generic error code in ufshcd_set_dev_pwr_mode()
The return value of ufshcd_set_dev_pwr_mode() is passed to device PM
core. However, the function currently returns a SCSI result which the PM
core doesn't understand. This might lead to unexpected behaviors in
userland; a platform reset was observed in Android.
Use a generic error code for SSU failures.
Link: https://lore.kernel.org/r/1642743182-54098-1-git-send-email-kwmad.kim@samsung.com
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Kiwoong Kim <kwmad.kim@samsung.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
(cherry picked from commit ad6c8a4264 git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next)
Bug: 204438323
Change-Id: I051742cd8ea2215cbd94ac3dedc4fab2863a9c6e
Signed-off-by: Bart Van Assche <bvanassche@google.com>
This commit is contained in:
@@ -8664,7 +8664,7 @@ static void ufshcd_hba_exit(struct ufs_hba *hba)
|
||||
* @pwr_mode: device power mode to set
|
||||
*
|
||||
* Returns 0 if requested power mode is set successfully
|
||||
* Returns non-zero if failed to set the requested power mode
|
||||
* Returns < 0 if failed to set the requested power mode
|
||||
*/
|
||||
static int ufshcd_set_dev_pwr_mode(struct ufs_hba *hba,
|
||||
enum ufs_dev_pwr_mode pwr_mode)
|
||||
@@ -8718,8 +8718,11 @@ static int ufshcd_set_dev_pwr_mode(struct ufs_hba *hba,
|
||||
sdev_printk(KERN_WARNING, sdp,
|
||||
"START_STOP failed for power mode: %d, result %x\n",
|
||||
pwr_mode, ret);
|
||||
if (ret > 0 && scsi_sense_valid(&sshdr))
|
||||
scsi_print_sense_hdr(sdp, NULL, &sshdr);
|
||||
if (ret > 0) {
|
||||
if (scsi_sense_valid(&sshdr))
|
||||
scsi_print_sense_hdr(sdp, NULL, &sshdr);
|
||||
ret = -EIO;
|
||||
}
|
||||
}
|
||||
|
||||
if (!ret)
|
||||
|
||||
Reference in New Issue
Block a user