]> git.baikalelectronics.ru Git - kernel.git/commit
PM / core: Clear the direct_complete flag on errors
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 4 Oct 2018 09:08:12 +0000 (11:08 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 4 Oct 2018 17:39:31 +0000 (19:39 +0200)
commitbcc815a81cf72315500a79685ad114fc8caa9075
tree115eba75d4db85e1a78a63b614bf4df9b94c815d
parent5dfa044c3a3b9125da254b1d9969551d27523c1c
PM / core: Clear the direct_complete flag on errors

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: a90637418063 (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>
drivers/base/power/main.c