Skip to content

Commit 1364055

Browse files
rafaeljwgregkh
authored andcommitted
PM / core: Clear the direct_complete flag on errors
commit 69e445a upstream. If __device_suspend() runs asynchronously (in which case the device passed to it is in dpm_suspended_list at that point) and it returns early on an error or pending wakeup, and the power.direct_complete flag has been set for the device already, the subsequent device_resume() will be confused by that and it will call pm_runtime_enable() incorrectly, as runtime PM has not been disabled for the device by __device_suspend(). To avoid that, clear power.direct_complete if __device_suspend() is not going to disable runtime PM for the device before returning. Fixes: aae4518 (PM / sleep: Mechanism to avoid resuming runtime-suspended devices unnecessarily) Reported-by: Al Cooper <alcooperx@gmail.com> Tested-by: Al Cooper <alcooperx@gmail.com> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org> Cc: 3.16+ <stable@vger.kernel.org> # 3.16+ Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 9047696 commit 1364055

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

drivers/base/power/main.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1462,8 +1462,10 @@ static int __device_suspend(struct device *dev, pm_message_t state, bool async)
14621462

14631463
dpm_wait_for_subordinate(dev, async);
14641464

1465-
if (async_error)
1465+
if (async_error) {
1466+
dev->power.direct_complete = false;
14661467
goto Complete;
1468+
}
14671469

14681470
/*
14691471
* If a device configured to wake up the system from sleep states
@@ -1475,6 +1477,7 @@ static int __device_suspend(struct device *dev, pm_message_t state, bool async)
14751477
pm_wakeup_event(dev, 0);
14761478

14771479
if (pm_wakeup_pending()) {
1480+
dev->power.direct_complete = false;
14781481
async_error = -EBUSY;
14791482
goto Complete;
14801483
}

0 commit comments

Comments
 (0)