]> git.baikalelectronics.ru Git - kernel.git/commit
[SCSI] runtime resume parent for child's system-resume
authorLin Ming <ming.m.lin@intel.com>
Thu, 22 Dec 2011 06:50:47 +0000 (14:50 +0800)
committerJeff Garzik <jgarzik@redhat.com>
Mon, 9 Jan 2012 00:14:59 +0000 (19:14 -0500)
commitc61ed929a1e01a53a2cf40872c44681532dd44b4
tree50d87e554891d996d2104c80466e5ec5bdef95e1
parent1718737279876af9e081f9c6f3843b8277ec4469
[SCSI] runtime resume parent for child's system-resume

[Patch description from Alan Stern]

If a child device was runtime-suspended when a system suspend began,
then there will be nothing to prevent its parent from
runtime-suspending as soon as it is woken up during the system resume.
Then when the time comes to resume the child, the resume will fail
because the parent is already back at low power.

On the other hand, there are some devices which should remain at low
power across an entire suspend-resume cycle.  The details depend on the
device and the platform.

This suggests that the PM core is not the right place to solve the
problem. One possible solution is for the subsystem or device driver
to call pm_runtime_get_sync(dev->parent) at the start of the
system-resume procedure and pm_runtime_put_sync(dev->parent) at the
end.

Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
drivers/scsi/scsi_pm.c