PM / Domains: Fix potential deadlock while adding/removing subdomains
authorUlf Hansson <ulf.hansson@linaro.org>
Wed, 27 Jan 2016 08:10:37 +0000 (09:10 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 27 Jan 2016 22:01:25 +0000 (23:01 +0100)
commitcdb300a041f5df1dfbde1367f95109b6449d1371
treed4432a4fedc2b1938268531044856f34f1b87f0a
parent0106ef5146f9e89e4dc9354f308ecaddb9617310
PM / Domains: Fix potential deadlock while adding/removing subdomains

We must preserve the same order of how we acquire and release the lock for
genpd, as otherwise we may encounter deadlocks.

The power on phase of a genpd starts by acquiring its lock. Then it walks
the hierarchy of its parent domains to be able to power on these first, as
per design of genpd.

From a locking perspective this means the locks of the parents becomes
acquired after the lock of the subdomain.

Let's fix pm_genpd_add|remove_subdomain() to maintain the same order of
acquiring/releasing the genpd lock as being applied in the power on/off
sequence.

Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/base/power/domain.c