Commit 78a6948b authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

Merge branch 'pm-core'

* pm-core:
  PM: runtime: Fix unpaired parent child_count for force_resume
parents e5af36b2 c745253e
...@@ -1637,6 +1637,7 @@ void pm_runtime_init(struct device *dev) ...@@ -1637,6 +1637,7 @@ void pm_runtime_init(struct device *dev)
dev->power.request_pending = false; dev->power.request_pending = false;
dev->power.request = RPM_REQ_NONE; dev->power.request = RPM_REQ_NONE;
dev->power.deferred_resume = false; dev->power.deferred_resume = false;
dev->power.needs_force_resume = 0;
INIT_WORK(&dev->power.work, pm_runtime_work); INIT_WORK(&dev->power.work, pm_runtime_work);
dev->power.timer_expires = 0; dev->power.timer_expires = 0;
...@@ -1804,10 +1805,12 @@ int pm_runtime_force_suspend(struct device *dev) ...@@ -1804,10 +1805,12 @@ int pm_runtime_force_suspend(struct device *dev)
* its parent, but set its status to RPM_SUSPENDED anyway in case this * its parent, but set its status to RPM_SUSPENDED anyway in case this
* function will be called again for it in the meantime. * function will be called again for it in the meantime.
*/ */
if (pm_runtime_need_not_resume(dev)) if (pm_runtime_need_not_resume(dev)) {
pm_runtime_set_suspended(dev); pm_runtime_set_suspended(dev);
else } else {
__update_runtime_status(dev, RPM_SUSPENDED); __update_runtime_status(dev, RPM_SUSPENDED);
dev->power.needs_force_resume = 1;
}
return 0; return 0;
...@@ -1834,7 +1837,7 @@ int pm_runtime_force_resume(struct device *dev) ...@@ -1834,7 +1837,7 @@ int pm_runtime_force_resume(struct device *dev)
int (*callback)(struct device *); int (*callback)(struct device *);
int ret = 0; int ret = 0;
if (!pm_runtime_status_suspended(dev) || pm_runtime_need_not_resume(dev)) if (!pm_runtime_status_suspended(dev) || !dev->power.needs_force_resume)
goto out; goto out;
/* /*
...@@ -1853,6 +1856,7 @@ int pm_runtime_force_resume(struct device *dev) ...@@ -1853,6 +1856,7 @@ int pm_runtime_force_resume(struct device *dev)
pm_runtime_mark_last_busy(dev); pm_runtime_mark_last_busy(dev);
out: out:
dev->power.needs_force_resume = 0;
pm_runtime_enable(dev); pm_runtime_enable(dev);
return ret; return ret;
} }
......
...@@ -601,6 +601,7 @@ struct dev_pm_info { ...@@ -601,6 +601,7 @@ struct dev_pm_info {
unsigned int idle_notification:1; unsigned int idle_notification:1;
unsigned int request_pending:1; unsigned int request_pending:1;
unsigned int deferred_resume:1; unsigned int deferred_resume:1;
unsigned int needs_force_resume:1;
unsigned int runtime_auto:1; unsigned int runtime_auto:1;
bool ignore_children:1; bool ignore_children:1;
unsigned int no_callbacks:1; unsigned int no_callbacks:1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment