From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: "linux-pm@lists.linux-foundation.org"
<linux-pm@lists.linux-foundation.org>
Subject: Re: Runtime PM: Calling Device runtime PM callbacks?
Date: Mon, 14 Dec 2009 22:57:40 +0100 [thread overview]
Message-ID: <200912142257.40100.rjw@sisk.pl> (raw)
In-Reply-To: <Pine.LNX.4.44L0.0912132331420.9109-100000@netrider.rowland.org>
On Monday 14 December 2009, Alan Stern wrote:
> On Mon, 14 Dec 2009, Rafael J. Wysocki wrote:
>
> > There you go (untested for now).
> >
> > ->runtime_idle() is still only called for the device's bus type, because
> > otherwise it will be hard to determine the right ordering of the bus type,
> > device type and device class callbacks.
>
> Shouldn't it be the same as runtime_suspend and runtime_resume?
Well, the ordering is different in each of them ...
> > drivers/base/power/runtime.c | 110 ++++++++++++++++---
> > 2 files changed, 201 insertions(+), 113 deletions(-)
> >
> > Index: linux-2.6/drivers/base/power/runtime.c
> > ===================================================================
> > --- linux-2.6.orig/drivers/base/power/runtime.c
> > +++ linux-2.6/drivers/base/power/runtime.c
> > @@ -111,6 +111,45 @@ int pm_runtime_idle(struct device *dev)
> > EXPORT_SYMBOL_GPL(pm_runtime_idle);
> >
> > /**
> > + * device_runtime_suspend - Execute "runtime suspend" callbacks for a device.
> > + * @dev: Device to handle.
> > + * @error_ptr: Place to store error values returned by the callbacks.
> > + */
> > +static int device_runtime_suspend(struct device *dev, int *error_ptr)
> > +{
> > + int error = -ENOSYS;
> > +
> > + down(&dev->sem);
> > +
> > + if (dev->class && dev->class->pm && dev->class->pm->runtime_suspend) {
> > + error = dev->class->pm->runtime_suspend(dev);
> > + suspend_report_result(dev->class->pm->runtime_suspend, error);
> > + *error_ptr = error;
> > + if (error)
> > + goto out;
> > + }
> > +
> > + if (dev->type && dev->type->pm && dev->type->pm->runtime_suspend) {
> > + error = dev->type->pm->runtime_suspend(dev);
> > + suspend_report_result(dev->type->pm->runtime_suspend, error);
> > + *error_ptr = error;
> > + if (error)
> > + goto out;
> > + }
> > +
> > + if (dev->bus && dev->bus->pm && dev->bus->pm->runtime_suspend) {
> > + error = dev->bus->pm->runtime_suspend(dev);
> > + suspend_report_result(dev->bus->pm->runtime_suspend, error);
> > + *error_ptr = error;
> > + }
> > +
> > + out:
> > + up(&dev->sem);
> > +
> > + return error;
> > +}
>
> What's the reason for error_ptr here? Its value will always be the
> same as the return value except in the case where none of the callbacks
> are defined. Why not just use -ENOSYS in that case and eliminate
> error_ptr?
To preserve the existing logic.
Namely, without the patch dev->power.runtime error is not updated in the
-ENOSYS case and that actually is for a reason (we don't want runtime_error to
be set merely because there's no callbacks to execute). I could check the
return value, but what if one of the callbacks returns -ENOSYS?
Rafael
next prev parent reply other threads:[~2009-12-14 21:57 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-13 5:20 Runtime PM: Calling Device runtime PM callbacks? Mahalingam, Nithish
2009-12-13 12:34 ` Rafael J. Wysocki
2009-12-13 16:57 ` Alan Stern
2009-12-13 18:36 ` Rafael J. Wysocki
2009-12-13 18:49 ` Alan Stern
2009-12-14 0:03 ` Rafael J. Wysocki
2009-12-14 3:36 ` Mahalingam, Nithish
2009-12-14 4:42 ` Alan Stern
2009-12-14 21:58 ` Rafael J. Wysocki
2009-12-14 4:37 ` Alan Stern
2009-12-14 21:57 ` Rafael J. Wysocki [this message]
2009-12-14 22:08 ` Alan Stern
2009-12-14 22:28 ` Rafael J. Wysocki
2009-12-14 23:09 ` Alan Stern
2009-12-14 23:26 ` Rafael J. Wysocki
2009-12-15 3:11 ` Mahalingam, Nithish
2009-12-15 14:40 ` Alan Stern
2009-12-15 20:30 ` Rafael J. Wysocki
2009-12-15 20:51 ` Alan Stern
2009-12-15 21:04 ` Rafael J. Wysocki
2009-12-19 15:13 ` Rafael J. Wysocki
2009-12-19 16:46 ` Alan Stern
2009-12-19 21:31 ` Rafael J. Wysocki
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=200912142257.40100.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=linux-pm@lists.linux-foundation.org \
--cc=stern@rowland.harvard.edu \
/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