* [PATCH v1] scsi: core: pair EH runtime PM get and put
@ 2026-06-23 7:44 Hongjie Fang
2026-07-24 21:18 ` Bart Van Assche
0 siblings, 1 reply; 3+ messages in thread
From: Hongjie Fang @ 2026-06-23 7:44 UTC (permalink / raw)
To: James.Bottomley, martin.petersen, jgarzik, stern, bvanassche
Cc: linux-scsi, linux-kernel
shost->eh_noresume is currently consulted twice in one error handling
iteration: once before scsi_autopm_get_host() and once again before
scsi_autopm_put_host().
That is racy when a PM-triggered error path flips shost->eh_noresume while
the SCSI EH thread is still running.
The problem flow looks like this:
PM path
ufshcd_set_dev_pwr_mode()
shost->eh_noresume = 1
ufshcd_execute_start_stop <-- trigger EH
...
shost->eh_noresume = 0
EH path
scsi_error_handler()
if (!shost->eh_noresume)
scsi_autopm_get_host() <-- skipped
...
if (!shost->eh_noresume)
scsi_autopm_put_host() <-- executed later
In that case one EH iteration can skip autoresume on entry and still drop
a runtime PM reference on exit. That leaves an unmatched runtime PM put
and can trigger a runtime PM usage count underflow.
Fix this by calling scsi_autopm_put_host() only if the same iteration
successfully acquired a runtime PM reference through the
scsi_autopm_get_host().
Fixes: ae0751ffc77e ("[SCSI] add flag to skip the runtime PM calls on the host")
Signed-off-by: Hongjie Fang <hongjiefang@asrmicro.com>
---
drivers/scsi/scsi_error.c | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
index 147127fb4db9..c78ea64641a9 100644
--- a/drivers/scsi/scsi_error.c
+++ b/drivers/scsi/scsi_error.c
@@ -2342,6 +2342,7 @@ static void scsi_unjam_host(struct Scsi_Host *shost)
int scsi_error_handler(void *data)
{
struct Scsi_Host *shost = data;
+ bool autopm_put;
/*
* We use TASK_INTERRUPTIBLE so that the thread is not
@@ -2383,12 +2384,16 @@ int scsi_error_handler(void *data)
* what we need to do to get it up and online again (if we can).
* If we fail, we end up taking the thing offline.
*/
- if (!shost->eh_noresume && scsi_autopm_get_host(shost) != 0) {
- SCSI_LOG_ERROR_RECOVERY(1,
- shost_printk(KERN_ERR, shost,
- "scsi_eh_%d: unable to autoresume\n",
- shost->host_no));
- continue;
+ autopm_put = false;
+ if (!shost->eh_noresume) {
+ if (scsi_autopm_get_host(shost) != 0) {
+ SCSI_LOG_ERROR_RECOVERY(1,
+ shost_printk(KERN_ERR, shost,
+ "scsi_eh_%d: unable to autoresume\n",
+ shost->host_no));
+ continue;
+ }
+ autopm_put = true;
}
if (shost->transportt->eh_strategy_handler)
@@ -2407,7 +2412,7 @@ int scsi_error_handler(void *data)
* which are still online.
*/
scsi_restart_operations(shost);
- if (!shost->eh_noresume)
+ if (autopm_put)
scsi_autopm_put_host(shost);
}
__set_current_state(TASK_RUNNING);
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v1] scsi: core: pair EH runtime PM get and put
2026-06-23 7:44 [PATCH v1] scsi: core: pair EH runtime PM get and put Hongjie Fang
@ 2026-07-24 21:18 ` Bart Van Assche
2026-07-27 2:07 ` Fang Hongjie(方洪杰)
0 siblings, 1 reply; 3+ messages in thread
From: Bart Van Assche @ 2026-07-24 21:18 UTC (permalink / raw)
To: Hongjie Fang, James.Bottomley, martin.petersen, jgarzik, stern
Cc: linux-scsi, linux-kernel
On 6/23/26 12:44 AM, Hongjie Fang wrote:
> @@ -2383,12 +2384,16 @@ int scsi_error_handler(void *data)
> * what we need to do to get it up and online again (if we can).
> * If we fail, we end up taking the thing offline.
> */
> - if (!shost->eh_noresume && scsi_autopm_get_host(shost) != 0) {
> - SCSI_LOG_ERROR_RECOVERY(1,
> - shost_printk(KERN_ERR, shost,
> - "scsi_eh_%d: unable to autoresume\n",
> - shost->host_no));
> - continue;
> + autopm_put = false;
> + if (!shost->eh_noresume) {
> + if (scsi_autopm_get_host(shost) != 0) {
> + SCSI_LOG_ERROR_RECOVERY(1,
> + shost_printk(KERN_ERR, shost,
> + "scsi_eh_%d: unable to autoresume\n",
> + shost->host_no));
> + continue;
> + }
> + autopm_put = true;
> }
>
> if (shost->transportt->eh_strategy_handler)
> @@ -2407,7 +2412,7 @@ int scsi_error_handler(void *data)
> * which are still online.
> */
> scsi_restart_operations(shost);
> - if (!shost->eh_noresume)
> + if (autopm_put)
> scsi_autopm_put_host(shost);
> }
> __set_current_state(TASK_RUNNING);
Please capture the value of shost->eh_noresume in a local variable such
that concurrent changes of shost->eh_noresume can't break the above
code.
Thanks,
Bart.
^ permalink raw reply [flat|nested] 3+ messages in thread* RE: [PATCH v1] scsi: core: pair EH runtime PM get and put
2026-07-24 21:18 ` Bart Van Assche
@ 2026-07-27 2:07 ` Fang Hongjie(方洪杰)
0 siblings, 0 replies; 3+ messages in thread
From: Fang Hongjie(方洪杰) @ 2026-07-27 2:07 UTC (permalink / raw)
To: Bart Van Assche, James.Bottomley, martin.petersen, jgarzik, stern
Cc: linux-scsi, linux-kernel
> > @@ -2383,12 +2384,16 @@ int scsi_error_handler(void *data)
> > * what we need to do to get it up and online again (if we
> can).
> > * If we fail, we end up taking the thing offline.
> > */
> > - if (!shost->eh_noresume &&
> scsi_autopm_get_host(shost) != 0) {
> > - SCSI_LOG_ERROR_RECOVERY(1,
> > - shost_printk(KERN_ERR, shost,
> > - "scsi_eh_%d: unable to
> autoresume\n",
> > - shost->host_no));
> > - continue;
> > + autopm_put = false;
> > + if (!shost->eh_noresume) {
> > + if (scsi_autopm_get_host(shost) != 0) {
> > + SCSI_LOG_ERROR_RECOVERY(1,
> > + shost_printk(KERN_ERR, shost,
> > + "scsi_eh_%d: unable to
> autoresume\n",
> > + shost->host_no));
> > + continue;
> > + }
> > + autopm_put = true;
> > }
> >
> > if (shost->transportt->eh_strategy_handler)
> > @@ -2407,7 +2412,7 @@ int scsi_error_handler(void *data)
> > * which are still online.
> > */
> > scsi_restart_operations(shost);
> > - if (!shost->eh_noresume)
> > + if (autopm_put)
> > scsi_autopm_put_host(shost);
> > }
> > __set_current_state(TASK_RUNNING);
>
> Please capture the value of shost->eh_noresume in a local variable such
> that concurrent changes of shost->eh_noresume can't break the above
> code.
Thanks Bart. I will update the patch to snapshot shost->eh_noresume once
per EH iteration and use that value for both the get and put decisions.
>
> Thanks,
>
> Bart.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-27 2:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-23 7:44 [PATCH v1] scsi: core: pair EH runtime PM get and put Hongjie Fang
2026-07-24 21:18 ` Bart Van Assche
2026-07-27 2:07 ` Fang Hongjie(方洪杰)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®