From: Lin Ming <ming.m.lin@intel.com>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: Jeff Garzik <jgarzik@pobox.com>,
James Bottomley <JBottomley@parallels.com>,
Tejun Heo <tj@kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-ide@vger.kernel.org" <linux-ide@vger.kernel.org>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
"Rafael J. Wysocki" <rjw@sisk.pl>,
"Huang, Ying" <ying.huang@intel.com>,
"Zhang, Rui" <rui.zhang@intel.com>
Subject: Re: [PATCH v5 5/6] ata: add ata port system PM callbacks
Date: Wed, 14 Dec 2011 02:57:47 +0800 [thread overview]
Message-ID: <1323802667.3060.2.camel@hp6530s> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1112131038360.1888-100000@iolanthe.rowland.org>
On Tue, 2011-12-13 at 23:47 +0800, Alan Stern wrote:
> On Tue, 13 Dec 2011, Lin Ming wrote:
>
> > I just realized that the ata port runtime PM status need to be updated
> > after system resume.
> >
> > I tried below patch.
> > Unfortunately, it causes a problem that sd can't resume correctly.
> >
> > During system resume, ata port is resumed first and then sd resumed.
> >
> > When ata port resumed, device_resume(...) calls pm_runtime_put_sync(..),
> > which causes ata port to be runtime suspended immediately.
> >
> > So sd resume fails because it requires ata port to be active to handle
> > start device command.
> >
> > This seems a PM core's bug.
> >
> > device_resume(...) should not runtime suspend the parent device, because
> > its children have not resumed yet.
> >
> > Alan,
> >
> > What do you think?
>
> This appears to be the first time this problem has come up. But it is
> a real problem.
>
> 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.
How about below?
(Not tested yet)
diff --git a/drivers/scsi/scsi_pm.c b/drivers/scsi/scsi_pm.c
index a633076..5cf9a19 100644
--- a/drivers/scsi/scsi_pm.c
+++ b/drivers/scsi/scsi_pm.c
@@ -71,9 +71,17 @@ static int scsi_bus_suspend_common(struct device *dev, pm_message_t msg)
static int scsi_bus_resume_common(struct device *dev)
{
int err = 0;
+ bool put = false;
- if (scsi_is_sdev_device(dev))
+ if (scsi_is_sdev_device(dev)) {
+ if (dev->parent && pm_runtime_suspended(dev->parent)) {
+ pm_runtime_get_sync(dev->parent);
+ put = true;
+ }
err = scsi_dev_type_resume(dev);
+ if (put)
+ pm_runtime_put_sync(dev->parent);
+ }
if (err == 0) {
pm_runtime_disable(dev);
>
> Alan Stern
>
next prev parent reply other threads:[~2011-12-13 18:57 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-05 1:20 [PATCH v5 0/6] ata port runtime power management support Lin Ming
2011-12-05 1:20 ` [PATCH v5 1/6] ata: make ata port as parent device of scsi host Lin Ming
2011-12-07 20:04 ` Jeff Garzik
2011-12-05 1:20 ` [PATCH v5 2/6] [SCSI] add flag to skip the runtime PM calls on the host Lin Ming
2011-12-05 1:20 ` [PATCH v5 3/6] [SCSI] check runtime PM status in system PM Lin Ming
2011-12-05 1:20 ` [PATCH v5 4/6] [SCSI] sd: check runtime PM status in sd_shutdown Lin Ming
2011-12-05 1:20 ` [PATCH v5 5/6] ata: add ata port system PM callbacks Lin Ming
2011-12-07 8:38 ` Lin Ming
[not found] ` <CAF1ivSbRejpSEVfHAhOUxaqAedkCQVHWOgsJGFLM2yt2QaxtuQ@mail.gmail.com>
2011-12-13 14:20 ` Lin Ming
2011-12-13 15:47 ` Alan Stern
2011-12-13 18:57 ` Lin Ming [this message]
2011-12-13 19:07 ` Alan Stern
2011-12-05 1:20 ` [PATCH v5 6/6] ata: add ata port runtime " Lin Ming
2011-12-07 8:42 ` Lin Ming
2011-12-07 18:29 ` Tejun Heo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1323802667.3060.2.camel@hp6530s \
--to=ming.m.lin@intel.com \
--cc=JBottomley@parallels.com \
--cc=jgarzik@pobox.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=rjw@sisk.pl \
--cc=rui.zhang@intel.com \
--cc=stern@rowland.harvard.edu \
--cc=tj@kernel.org \
--cc=ying.huang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).