]> git.proxmox.com Git - mirror_ubuntu-bionic-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)
committerJuerg Haefliger <juergh@canonical.com>
Wed, 24 Jul 2019 01:52:55 +0000 (19:52 -0600)
commit9b0c9cdb29eed2d602662b7f3298065d2391e1d1
tree772c6689100023391ef0831d3e62fe5b669f983e
parenta2c379467f888c387107434a9e170dc9aaf92a1d
PM / core: Clear the direct_complete flag on errors

BugLink: https://bugs.launchpad.net/bugs/1836426
commit 69e445ab8b66a9f30519842ef18be555d3ee9b51 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: aae4518b3124 (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>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
drivers/base/power/main.c