* [PATCH] [SCSI] scsi_pm: set device runtime state before parent suspended
@ 2012-07-05 6:48 Lin Ming
2012-07-05 13:25 ` Alan Stern
0 siblings, 1 reply; 2+ messages in thread
From: Lin Ming @ 2012-07-05 6:48 UTC (permalink / raw)
To: Alan Stern, James Bottomley; +Cc: linux-scsi, linux-kernel, stable
There is a race in scsi_bus_resume_common when set device's runtime
state to active after pm_runtime_put_sync(dev->parent).
Parent device may have been suspended so pm_runtime_set_active(dev) will
fail with -EBUSY.
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
CC: <stable@vger.kernel.org>
---
drivers/scsi/scsi_pm.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/scsi/scsi_pm.c b/drivers/scsi/scsi_pm.c
index d4201de..d2a80de 100644
--- a/drivers/scsi/scsi_pm.c
+++ b/drivers/scsi/scsi_pm.c
@@ -85,14 +85,14 @@ static int scsi_bus_resume_common(struct device *dev)
*/
pm_runtime_get_sync(dev->parent);
err = scsi_dev_type_resume(dev);
+ if (err == 0) {
+ pm_runtime_disable(dev);
+ pm_runtime_set_active(dev);
+ pm_runtime_enable(dev);
+ }
pm_runtime_put_sync(dev->parent);
}
- if (err == 0) {
- pm_runtime_disable(dev);
- pm_runtime_set_active(dev);
- pm_runtime_enable(dev);
- }
return err;
}
--
1.7.10
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] [SCSI] scsi_pm: set device runtime state before parent suspended
2012-07-05 6:48 [PATCH] [SCSI] scsi_pm: set device runtime state before parent suspended Lin Ming
@ 2012-07-05 13:25 ` Alan Stern
0 siblings, 0 replies; 2+ messages in thread
From: Alan Stern @ 2012-07-05 13:25 UTC (permalink / raw)
To: Lin Ming; +Cc: James Bottomley, linux-scsi, linux-kernel, stable
On Thu, 5 Jul 2012, Lin Ming wrote:
> There is a race in scsi_bus_resume_common when set device's runtime
> state to active after pm_runtime_put_sync(dev->parent).
>
> Parent device may have been suspended so pm_runtime_set_active(dev) will
> fail with -EBUSY.
>
> Signed-off-by: Lin Ming <ming.m.lin@intel.com>
> CC: <stable@vger.kernel.org>
> ---
> drivers/scsi/scsi_pm.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/scsi/scsi_pm.c b/drivers/scsi/scsi_pm.c
> index d4201de..d2a80de 100644
> --- a/drivers/scsi/scsi_pm.c
> +++ b/drivers/scsi/scsi_pm.c
> @@ -85,14 +85,14 @@ static int scsi_bus_resume_common(struct device *dev)
> */
> pm_runtime_get_sync(dev->parent);
> err = scsi_dev_type_resume(dev);
> + if (err == 0) {
> + pm_runtime_disable(dev);
> + pm_runtime_set_active(dev);
> + pm_runtime_enable(dev);
> + }
> pm_runtime_put_sync(dev->parent);
> }
>
> - if (err == 0) {
> - pm_runtime_disable(dev);
> - pm_runtime_set_active(dev);
> - pm_runtime_enable(dev);
> - }
This isn't quite right. We still want to execute the
pm_runtime_disable, _set_active, and _enable even when
scsi_is_sdev_device(dev) is false.
I guess the revised code should look more like this:
/*
* Parent device may have runtime suspended as soon as
* it is woken up during the system resume.
*
* Resume it on behalf of child.
*/
pm_runtime_get_sync(dev->parent);
if (scsi_is_sdev_device(dev))
err = scsi_dev_type_resume(dev);
if (err == 0) {
pm_runtime_disable(dev);
pm_runtime_set_active(dev);
pm_runtime_enable(dev);
}
pm_runtime_put_sync(dev->parent);
Alan Stern
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-07-05 13:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-05 6:48 [PATCH] [SCSI] scsi_pm: set device runtime state before parent suspended Lin Ming
2012-07-05 13:25 ` 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®