]> git.baikalelectronics.ru Git - kernel.git/commit
PM / runtime: Drop children check from __pm_runtime_set_status()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 16 Nov 2017 21:51:22 +0000 (22:51 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 16 Nov 2017 21:51:22 +0000 (22:51 +0100)
commit9b595fe6ee97bfa03ec547c20383200d2c368c5e
tree6c90b8f2ee96d1a384f96f437e05d4d937a7fdae
parent6d5f17a82d4980a2a5f62498dfbf09b2491ec9d7
PM / runtime: Drop children check from __pm_runtime_set_status()

The check for "active" children in __pm_runtime_set_status(), when
trying to set the parent device status to "suspended", doesn't
really make sense, because in fact it is not invalid to set the
status of a device with runtime PM disabled to "suspended" in any
case.  It is invalid to enable runtime PM for a device with its
status set to "suspended" while its child_count reference counter
is nonzero, but the check in __pm_runtime_set_status() doesn't
really cover that situation.

For this reason, drop the children check from __pm_runtime_set_status()
and add a check against child_count reference counters of "suspended"
devices to pm_runtime_enable().

Fixes: 75f4f779aee1 (PM / Runtime: Don't allow to suspend a device with an active child)
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
Reviewed-by: Johan Hovold <johan@kernel.org>
Documentation/power/runtime_pm.txt
drivers/base/power/runtime.c