mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Rafael J. Wysocki" <rjw@rjwysocki.net>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: Allen Yu <alleny@nvidia.com>, Pavel Machek <pavel@ucw.cz>,
	Len Brown <len.brown@intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/1] PM / Runtime: let rpm_resume fail if rpm disabled and device suspended.
Date: Tue, 17 Jun 2014 22:37:03 +0200	[thread overview]
Message-ID: <1594380.FbALgJzamg@vostro.rjw.lan> (raw)
In-Reply-To: <2320679.BykjsXib1x@vostro.rjw.lan>

On Tuesday, June 17, 2014 10:26:14 PM Rafael J. Wysocki wrote:
> On Tuesday, June 17, 2014 10:11:32 AM Alan Stern wrote:
> > On Mon, 16 Jun 2014, Rafael J. Wysocki wrote:
> > 
> > > > For reasons having nothing to do with Allen's suggested change, I
> > > > wonder if we shouldn't replace this line with something like:
> > > > 
> > > > -	else if (dev->power.disable_depth == 1 && dev->power.is_suspended
> > > > +	else if (dev->power.disable > 0 && !dev->power.is_suspended
> > > > 	    && dev->power.runtime_status == RPM_ACTIVE)
> > > > 		retval = 1;
> > > > 
> > > > It seems that I've been bitten by this several times in the past.  
> > > > When a device is disabled for runtime PM, and more or less permanently
> > > > stuck in the RPM_ACTIVE state, calls to pm_runtime_resume() or
> > > > pm_runtime_get_sync() shouldn't fail.
> > > > 
> > > > For example, suppose some devices of a certain type support runtime 
> > > > power management but others don't.  We naturally want to call 
> > > > pm_runtime_disable() for the ones that don't.  But we also want the 
> > > > same driver to work for all the devices, which means that 
> > > > pm_runtime_get_sync() should return success -- otherwise the driver 
> > > > will think that something has gone wrong.
> > > > 
> > > > Rafael, what do you think?
> > > 
> > > That condition is there specifically to take care of the system suspend
> > > code path.  It means that if runtime PM is disabled, but it only has been
> > > disabled by the system suspend code path, we should treat the device as
> > > "active" (ie. return 1).  That won't work after the proposed change.
> > 
> > Ah, yes, quite true.  Okay, suppose we replace that line with just:
> > 
> > +	else if (dev->power.disable > 0
> > 
> > > I guess drivers that want to work with devices where runtime PM may be
> > > disabled can just check the return value of rpm_resume() for -EACCES?
> > 
> > They could, but it's extra work and it's extremely easy to forget 
> > about.  I'd prefer not to do things that way.
> 
> In that case we need to audit all code that checks the return value of
> __pm_runtime_resume() to verify that it doesn't depend on the current
> behavior in any way.  It shouldn't, but still.
> 
> Also we probably should drop the -EACCES return value from rpm_resume() in the
> same patch, because it specifically only covers the dev->power.disable > 0 case
> (which BTW is consistent with the suspend side of things, so I'm totally unsure
> about that being the right thing to do to be honest).

Perhaps it'd be better to rework __pm_runtime_resume() to convert the -EACCES
return value from rpm_resume() into 0 if RPM_GET_PUT is set?

Rafael


  reply	other threads:[~2014-06-17 20:19 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-14 10:03 Allen Yu
2014-06-14 14:32 ` Alan Stern
2014-06-16  3:03   ` Allen Yu
2014-06-16 14:43     ` Alan Stern
2014-06-16 17:40 ` Alan Stern
2014-06-16 21:29   ` Rafael J. Wysocki
2014-06-17 14:11     ` Alan Stern
2014-06-17 20:26       ` Rafael J. Wysocki
2014-06-17 20:37         ` Rafael J. Wysocki [this message]
2014-06-17 20:46           ` Rafael J. Wysocki
2014-06-18 15:30             ` Alan Stern
2014-06-18 23:57               ` Rafael J. Wysocki
2014-06-19  8:23                 ` Allen Yu
2014-06-19 13:55                   ` Rafael J. Wysocki
2014-06-19 14:34                     ` Allen Yu
2014-06-20 14:04                       ` Rafael J. Wysocki
2014-06-19 14:56                   ` Alan Stern
2014-06-19 19:25                     ` Kevin Hilman
2014-06-19 20:13                       ` Alan Stern
2014-06-20 13:20                         ` Rafael J. Wysocki
2014-06-20 14:48                           ` Alan Stern
2014-06-20 21:34                             ` Kevin Hilman
2014-06-22 13:40                               ` Rafael J. Wysocki
2014-06-22 13:24                             ` Rafael J. Wysocki
2014-06-20 21:31                         ` Kevin Hilman
2014-06-21 13:34                           ` Alan Stern
2014-06-22 13:35                             ` Rafael J. Wysocki
2014-06-23 18:57                             ` Kevin Hilman
2014-06-19 14:34                 ` Alan Stern
2014-06-20 13:33                   ` Rafael J. Wysocki
2014-06-20 14:43                     ` Alan Stern
2014-06-22 13:21                       ` Rafael J. Wysocki
2014-06-22 16:45                         ` Alan Stern
2014-06-24 23:38                           ` Rafael J. Wysocki
2014-06-27 18:27                             ` [RFC] Add "rpm_not_supported" flag Alan Stern
2014-06-27 19:22                               ` Greg Kroah-Hartman
2014-06-27 20:11                                 ` Alan Stern
2014-06-27 20:50                                   ` Greg Kroah-Hartman
2014-06-28 15:32                                     ` Alan Stern
2014-06-30 13:52                                       ` Rafael J. Wysocki
2014-06-30 14:42                                         ` Alan Stern
2014-07-01 23:18                                           ` Rafael J. Wysocki
2014-07-02 14:27                                             ` Alan Stern
2014-07-02 17:56                                               ` Greg Kroah-Hartman
2014-07-03 21:16                                               ` Rafael J. Wysocki
2014-07-03 21:17                                                 ` Alan Stern
2014-07-16 22:40                                               ` Rafael J. Wysocki
2014-07-16 23:03                                                 ` Greg Kroah-Hartman
2014-07-16 23:27                                                   ` Rafael J. Wysocki
2014-07-17 14:27                                                     ` Alan Stern
2014-07-18  0:48                                                       ` 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=1594380.FbALgJzamg@vostro.rjw.lan \
    --to=rjw@rjwysocki.net \
    --cc=alleny@nvidia.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=len.brown@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=pavel@ucw.cz \
    --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

all inboxes | Powered by JetHome®