* [PATCH v2] scsi: core: pair EH runtime PM get and put
@ 2026-07-27 5:56 Hongjie Fang
2026-07-27 14:11 ` Alan Stern
0 siblings, 1 reply; 4+ messages in thread
From: Hongjie Fang @ 2026-07-27 5:56 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 snapshotting shost->eh_noresume once per EH iteration and
using that snapshot for both runtime PM get and put decisions.
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 | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
index 147127fb4db9..a216f56044d9 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 eh_noresume;
/*
* We use TASK_INTERRUPTIBLE so that the thread is not
@@ -2383,7 +2384,8 @@ 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) {
+ eh_noresume = shost->eh_noresume;
+ if (!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",
@@ -2407,7 +2409,7 @@ int scsi_error_handler(void *data)
* which are still online.
*/
scsi_restart_operations(shost);
- if (!shost->eh_noresume)
+ if (!eh_noresume)
scsi_autopm_put_host(shost);
}
__set_current_state(TASK_RUNNING);
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2] scsi: core: pair EH runtime PM get and put
2026-07-27 5:56 [PATCH v2] scsi: core: pair EH runtime PM get and put Hongjie Fang
@ 2026-07-27 14:11 ` Alan Stern
2026-07-28 2:22 ` Fang Hongjie(方洪杰)
0 siblings, 1 reply; 4+ messages in thread
From: Alan Stern @ 2026-07-27 14:11 UTC (permalink / raw)
To: Hongjie Fang
Cc: James.Bottomley, martin.petersen, jgarzik, bvanassche,
linux-scsi, linux-kernel
On Mon, Jul 27, 2026 at 01:56:15PM +0800, Hongjie Fang wrote:
> 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 snapshotting shost->eh_noresume once per EH iteration and
> using that snapshot for both runtime PM get and put decisions.
>
> 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 | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
> index 147127fb4db9..a216f56044d9 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 eh_noresume;
>
> /*
> * We use TASK_INTERRUPTIBLE so that the thread is not
> @@ -2383,7 +2384,8 @@ 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) {
> + eh_noresume = shost->eh_noresume;
You should be aware that simply reading a variable does not snapshot its
value unless the read is protected by a lock or something else. In this
case, the compiler is allowed to eliminate the eh_noresume variable and
use shost->eh_noresume instead, both here and below, under the
assumption that shost->eh_noresume doesn't change in the meantime.
To truly snapshot the the value in a way that's immune to changes from
other threads, you have to use READ_ONCE():
eh_noresume = READ_ONCE(shost->eh_noresume);
The compiler is then not allowed to assume that shost->eh_noresume
remains unchanged later on. This is all explained (along with a _lot_
of other material -- search for "READ_ONCE") in
Documentation/memory-barriers.txt.
Alan Stern
> + if (!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",
> @@ -2407,7 +2409,7 @@ int scsi_error_handler(void *data)
> * which are still online.
> */
> scsi_restart_operations(shost);
> - if (!shost->eh_noresume)
> + if (!eh_noresume)
> scsi_autopm_put_host(shost);
> }
> __set_current_state(TASK_RUNNING);
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread* RE: [PATCH v2] scsi: core: pair EH runtime PM get and put
2026-07-27 14:11 ` Alan Stern
@ 2026-07-28 2:22 ` Fang Hongjie(方洪杰)
2026-07-28 15:16 ` Alan Stern
0 siblings, 1 reply; 4+ messages in thread
From: Fang Hongjie(方洪杰) @ 2026-07-28 2:22 UTC (permalink / raw)
To: Alan Stern
Cc: James.Bottomley, martin.petersen, jgarzik, bvanassche,
linux-scsi, linux-kernel
> > diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
> > index 147127fb4db9..a216f56044d9 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 eh_noresume;
> >
> > /*
> > * We use TASK_INTERRUPTIBLE so that the thread is not
> > @@ -2383,7 +2384,8 @@ 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) {
> > + eh_noresume = shost->eh_noresume;
>
> You should be aware that simply reading a variable does not snapshot its
> value unless the read is protected by a lock or something else. In this
> case, the compiler is allowed to eliminate the eh_noresume variable and
> use shost->eh_noresume instead, both here and below, under the
> assumption that shost->eh_noresume doesn't change in the meantime.
>
> To truly snapshot the the value in a way that's immune to changes from
> other threads, you have to use READ_ONCE():
>
> eh_noresume = READ_ONCE(shost->eh_noresume);
>
> The compiler is then not allowed to assume that shost->eh_noresume
> remains unchanged later on. This is all explained (along with a _lot_
> of other material -- search for "READ_ONCE") in
> Documentation/memory-barriers.txt.
>
Thanks Alan.
I agree that a plain local variable is not enough for a compiler-level
snapshot.
There is one extra detail here: shost->eh_noresume is currently a
bitfield:
unsigned eh_noresume:1;
so READ_ONCE(shost->eh_noresume) cannot be used directly because
READ_ONCE() takes the address of its argument.
My plan for v3 is to first make eh_noresume a regular bool, then use
READ_ONCE() in scsi_error_handler() to snapshot it once per EH iteration.
I will also use WRITE_ONCE() for the writer that changes eh_noresume while
SCSI EH may observe it.
Does this approach look reasonable to you?
Best.
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2] scsi: core: pair EH runtime PM get and put
2026-07-28 2:22 ` Fang Hongjie(方洪杰)
@ 2026-07-28 15:16 ` Alan Stern
0 siblings, 0 replies; 4+ messages in thread
From: Alan Stern @ 2026-07-28 15:16 UTC (permalink / raw)
To: Fang Hongjie(方洪杰)
Cc: James.Bottomley, martin.petersen, jgarzik, bvanassche,
linux-scsi, linux-kernel
On Tue, Jul 28, 2026 at 02:22:29AM +0000, Fang Hongjie(方洪杰) wrote:
> Thanks Alan.
> I agree that a plain local variable is not enough for a compiler-level
> snapshot.
> There is one extra detail here: shost->eh_noresume is currently a
> bitfield:
> unsigned eh_noresume:1;
> so READ_ONCE(shost->eh_noresume) cannot be used directly because
> READ_ONCE() takes the address of its argument.
>
> My plan for v3 is to first make eh_noresume a regular bool, then use
> READ_ONCE() in scsi_error_handler() to snapshot it once per EH iteration.
> I will also use WRITE_ONCE() for the writer that changes eh_noresume while
> SCSI EH may observe it.
>
> Does this approach look reasonable to you?
That should be fine.
Alan Stern
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-07-28 15:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-27 5:56 [PATCH v2] scsi: core: pair EH runtime PM get and put Hongjie Fang
2026-07-27 14:11 ` Alan Stern
2026-07-28 2:22 ` Fang Hongjie(方洪杰)
2026-07-28 15:16 ` Alan Stern
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®