]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
scsi: ufs: core: Use link recovery when h8 exit fails during runtime resume
authorSeunghui Lee <sh043.lee@samsung.com>
Thu, 17 Jul 2025 08:12:13 +0000 (17:12 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Aug 2025 10:14:03 +0000 (12:14 +0200)
[ Upstream commit 35dabf4503b94a697bababe94678a8bc989c3223 ]

If the h8 exit fails during runtime resume process, the runtime thread
enters runtime suspend immediately and the error handler operates at the
same time.  It becomes stuck and cannot be recovered through the error
handler.  To fix this, use link recovery instead of the error handler.

Fixes: 4db7a2360597 ("scsi: ufs: Fix concurrency of error handler and other error recovery paths")
Signed-off-by: Seunghui Lee <sh043.lee@samsung.com>
Link: https://lore.kernel.org/r/20250717081213.6811-1-sh043.lee@samsung.com
Reviewed-by: Bean Huo <beanhuo@micron.com>
Acked-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/ufs/core/ufshcd.c

index a6299cb19237c04efd81a3094191018f3e91a10b..e079cb5d9ec690a10bd749d63a7d24fc14dd8f58 100644 (file)
@@ -4337,7 +4337,7 @@ out:
        hba->uic_async_done = NULL;
        if (reenable_intr)
                ufshcd_enable_intr(hba, UIC_COMMAND_COMPL);
-       if (ret) {
+       if (ret && !hba->pm_op_in_progress) {
                ufshcd_set_link_broken(hba);
                ufshcd_schedule_eh_work(hba);
        }
@@ -4345,6 +4345,14 @@ out_unlock:
        spin_unlock_irqrestore(hba->host->host_lock, flags);
        mutex_unlock(&hba->uic_cmd_mutex);
 
+       /*
+        * If the h8 exit fails during the runtime resume process, it becomes
+        * stuck and cannot be recovered through the error handler.  To fix
+        * this, use link recovery instead of the error handler.
+        */
+       if (ret && hba->pm_op_in_progress)
+               ret = ufshcd_link_recovery(hba);
+
        return ret;
 }