linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PM / sleep: fix unbalanced pm runtime disable in __device_suspend_late()
@ 2016-05-13 18:03 Grygorii Strashko
  2016-05-19 13:38 ` Rafael J. Wysocki
  0 siblings, 1 reply; 7+ messages in thread
From: Grygorii Strashko @ 2016-05-13 18:03 UTC (permalink / raw)
  To: Rafael J. Wysocki, linux-pm, Len Brown, Pavel Machek
  Cc: Greg Kroah-Hartman, Kevin Hilman, Ulf Hansson, linux-kernel,
	Grygorii Strashko

The PM runtime will be left disabled for the device if its .suspend_late()
callback fails and async suspend is not allowed for this device. In
this case device will not be added in dpm_late_early_list and
dpm_resume_early() will ignore this device, as result PM runtime will
be disabled for it forever (side effect: after 8 subsequent failures
for the same device the PM runtime will be reenabled due to
disable_depth overflow).

Hence, re-enable PM runtime in __device_suspend_late() if
.suspend_late() callback fails and async suspend is not allowed for
this device.

Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
---
 drivers/base/power/main.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c
index 6e7c3cc..9b266e5 100644
--- a/drivers/base/power/main.c
+++ b/drivers/base/power/main.c
@@ -1207,10 +1207,13 @@ static int __device_suspend_late(struct device *dev, pm_message_t state, bool as
 	}
 
 	error = dpm_run_callback(callback, dev, state, info);
-	if (!error)
+	if (!error) {
 		dev->power.is_late_suspended = true;
-	else
+	} else {
 		async_error = error;
+		if (!is_async(dev))
+			pm_runtime_enable(dev);
+	}
 
 Complete:
 	TRACE_SUSPEND(error);
-- 
2.8.2

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-05-23 15:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-13 18:03 [PATCH] PM / sleep: fix unbalanced pm runtime disable in __device_suspend_late() Grygorii Strashko
2016-05-19 13:38 ` Rafael J. Wysocki
2016-05-19 17:11   ` Grygorii Strashko
2016-05-20 12:18     ` Rafael J. Wysocki
2016-05-20 16:21       ` Grygorii Strashko
2016-05-20 21:26         ` Rafael J. Wysocki
2016-05-23 15:06           ` Grygorii Strashko

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).