Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932506AbbG1NZN (ORCPT ); Tue, 28 Jul 2015 09:25:13 -0400 Received: from mail-wi0-f179.google.com ([209.85.212.179]:35482 "EHLO mail-wi0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755211AbbG1NUv (ORCPT ); Tue, 28 Jul 2015 09:20:51 -0400 From: Tomeu Vizoso To: linux-kernel@vger.kernel.org Cc: Stephen Warren , Javier Martinez Canillas , Mark Brown , Thierry Reding , "Rafael J. Wysocki" , linux-arm-kernel@lists.infradead.org, Dmitry Torokhov , devicetree@vger.kernel.org, Linus Walleij , linux-acpi@vger.kernel.org, Arnd Bergmann , Tomeu Vizoso , Liam Girdwood Subject: [PATCH v2 09/22] regulator: core: Reduce critical area in _regulator_get Date: Tue, 28 Jul 2015 15:19:40 +0200 Message-Id: <1438089593-7696-10-git-send-email-tomeu.vizoso@collabora.com> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1438089593-7696-1-git-send-email-tomeu.vizoso@collabora.com> References: <1438089593-7696-1-git-send-email-tomeu.vizoso@collabora.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 9107 Lines: 304 ...by moving the locking of regulator_list_mutex into regulator_dev_lookup(), where it is iterated over. The regulator device lock gets acquired before returning, and the caller is responsible for releasing it after it's done with the regulator device. In _regulator_get() the regulator_list_mutex mutex is held for most of the function, but is only strictly needed to protect the list lookups. This change would be useful if for example regulator devices could be registered on demand when a driver requests them. regulator_register() could end up being called from within _regulator_get while the lock on regulator_list_mutex is being held, causing a deadlock. This backtrace illustrates the situation described above: (regulator_register) from [] (devm_regulator_register+0x48/0x84) (devm_regulator_register) from [] (reg_fixed_voltage_probe+0x214/0x35c) (reg_fixed_voltage_probe) from [] (platform_drv_probe+0x54/0xbc) (platform_drv_probe) from [] (driver_probe_device+0x184/0x2c4) (driver_probe_device) from [] (__device_attach+0x50/0x54) (__device_attach) from [] (bus_for_each_drv+0x70/0xa4) (bus_for_each_drv) from [] (device_attach+0x90/0xa4) (device_attach) from [] (bus_probe_device+0x94/0xb8) (bus_probe_device) from [] (device_add+0x384/0x580) (device_add) from [] (of_device_add+0x44/0x4c) (of_device_add) from [] ... (regulator_dev_lookup) from [] (_regulator_get+0x8c/0x26c) (_regulator_get) from [] (regulator_get+0x20/0x24) (regulator_get) from [] (_devm_regulator_get+0xa4/0xc8) (_devm_regulator_get) from [] (devm_regulator_get+0x1c/0x20) (devm_regulator_get) from [] (tegra_hdmi_probe+0xe0/0x278) (tegra_hdmi_probe) from [] (platform_drv_probe+0x54/0xbc) Signed-off-by: Tomeu Vizoso --- Changes in v2: - Acquire regulator device lock before returning from regulator_dev_lookup() drivers/regulator/core.c | 98 +++++++++++++++++++++++++++--------------------- 1 file changed, 55 insertions(+), 43 deletions(-) diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 613034667b93..65a3f28d452c 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -110,6 +110,7 @@ static struct regulator *create_regulator(struct regulator_dev *rdev, struct device *dev, const char *supply_name); static void _regulator_put(struct regulator *regulator); +static int _regulator_enable(struct regulator *regulator, bool do_lock); static const char *rdev_get_name(struct regulator_dev *rdev) { @@ -1212,6 +1213,7 @@ static void unset_regulator_supplies(struct regulator_dev *rdev) #define REG_STR_SIZE 64 +/* rdev->mutex held by caller */ static struct regulator *create_regulator(struct regulator_dev *rdev, struct device *dev, const char *supply_name) @@ -1224,7 +1226,7 @@ static struct regulator *create_regulator(struct regulator_dev *rdev, if (regulator == NULL) return NULL; - mutex_lock(&rdev->mutex); + lockdep_assert_held_once(&rdev->mutex); regulator->rdev = rdev; list_add(®ulator->list, &rdev->consumer_list); @@ -1276,12 +1278,10 @@ static struct regulator *create_regulator(struct regulator_dev *rdev, _regulator_is_enabled(rdev)) regulator->always_on = true; - mutex_unlock(&rdev->mutex); return regulator; overflow_err: list_del(®ulator->list); kfree(regulator); - mutex_unlock(&rdev->mutex); return NULL; } @@ -1320,6 +1320,7 @@ static void regulator_supply_alias(struct device **dev, const char **supply) } } +/* Caller has to release r->mutex once done with r */ static struct regulator_dev *regulator_dev_lookup(struct device *dev, const char *supply, int *ret) @@ -1335,10 +1336,15 @@ static struct regulator_dev *regulator_dev_lookup(struct device *dev, if (dev && dev->of_node) { node = of_get_regulator(dev, supply); if (node) { + mutex_lock(®ulator_list_mutex); list_for_each_entry(r, ®ulator_list, list) if (r->dev.parent && - node == r->dev.of_node) + node == r->dev.of_node) { + mutex_lock(&r->mutex); + mutex_unlock(®ulator_list_mutex); return r; + } + mutex_unlock(®ulator_list_mutex); *ret = -EPROBE_DEFER; return NULL; } else { @@ -1356,9 +1362,14 @@ static struct regulator_dev *regulator_dev_lookup(struct device *dev, if (dev) devname = dev_name(dev); + mutex_lock(®ulator_list_mutex); list_for_each_entry(r, ®ulator_list, list) - if (strcmp(rdev_get_name(r), supply) == 0) + if (strcmp(rdev_get_name(r), supply) == 0) { + mutex_lock(&r->mutex); + mutex_unlock(®ulator_list_mutex); return r; + } + mutex_unlock(®ulator_list_mutex); list_for_each_entry(map, ®ulator_map_list, list) { /* If the mapping has a device set up it must match */ @@ -1400,6 +1411,7 @@ static int regulator_resolve_supply(struct regulator_dev *rdev) if (!r) { if (have_full_constraints()) { r = dummy_regulator_rdev; + mutex_lock(&r->mutex); } else { dev_err(dev, "Failed to resolve %s-supply for %s\n", rdev->supply_name, rdev->desc->name); @@ -1410,23 +1422,25 @@ static int regulator_resolve_supply(struct regulator_dev *rdev) /* Recursively resolve the supply of the supply */ ret = regulator_resolve_supply(r); if (ret < 0) - return ret; + goto out; ret = set_supply(rdev, r); if (ret < 0) - return ret; + goto out; /* Cascade always-on state to supply */ if (_regulator_is_enabled(rdev)) { - ret = regulator_enable(rdev->supply); + ret = _regulator_enable(rdev->supply, false); if (ret < 0) { if (rdev->supply) _regulator_put(rdev->supply); - return ret; + goto out; } } - return 0; +out: + mutex_unlock(&r->mutex); + return ret; } /* Internal regulator request function */ @@ -1451,8 +1465,6 @@ static struct regulator *_regulator_get(struct device *dev, const char *id, else ret = -EPROBE_DEFER; - mutex_lock(®ulator_list_mutex); - rdev = regulator_dev_lookup(dev, id, &ret); if (rdev) goto found; @@ -1478,13 +1490,13 @@ static struct regulator *_regulator_get(struct device *dev, const char *id, devname, id); rdev = dummy_regulator_rdev; + mutex_lock(&rdev->mutex); goto found; /* Don't log an error when called from regulator_get_optional() */ } else if (!have_full_constraints() || exclusive) { dev_warn(dev, "dummy supplies not allowed\n"); } - mutex_unlock(®ulator_list_mutex); return regulator; found: @@ -1526,8 +1538,7 @@ found: } out: - mutex_unlock(®ulator_list_mutex); - + mutex_unlock(&rdev->mutex); return regulator; } @@ -1987,11 +1998,22 @@ static int _regulator_do_enable(struct regulator_dev *rdev) } /* locks held by regulator_enable() */ -static int _regulator_enable(struct regulator_dev *rdev) +static int _regulator_enable(struct regulator *regulator, bool do_lock) { - int ret; + struct regulator_dev *rdev = regulator->rdev; + int ret = 0; - lockdep_assert_held_once(&rdev->mutex); + if (regulator->always_on) + return 0; + + if (rdev->supply) { + ret = regulator_enable(rdev->supply); + if (ret != 0) + return ret; + } + + if (do_lock) + mutex_lock(&rdev->mutex); /* check voltage and requested load before enabling */ if (rdev->constraints && @@ -2002,23 +2024,32 @@ static int _regulator_enable(struct regulator_dev *rdev) /* The regulator may on if it's not switchable or left on */ ret = _regulator_is_enabled(rdev); if (ret == -EINVAL || ret == 0) { - if (!_regulator_can_change_status(rdev)) - return -EPERM; + if (!_regulator_can_change_status(rdev)) { + ret = -EPERM; + goto out; + } ret = _regulator_do_enable(rdev); if (ret < 0) - return ret; + goto out; } else if (ret < 0) { rdev_err(rdev, "is_enabled() failed: %d\n", ret); - return ret; + goto out; } /* Fallthrough on positive return values - already enabled */ } rdev->use_count++; - return 0; +out: + if (do_lock) + mutex_unlock(&rdev->mutex); + + if (ret != 0 && rdev->supply) + regulator_disable(rdev->supply); + + return ret; } /** @@ -2034,26 +2065,7 @@ static int _regulator_enable(struct regulator_dev *rdev) */ int regulator_enable(struct regulator *regulator) { - struct regulator_dev *rdev = regulator->rdev; - int ret = 0; - - if (regulator->always_on) - return 0; - - if (rdev->supply) { - ret = regulator_enable(rdev->supply); - if (ret != 0) - return ret; - } - - mutex_lock(&rdev->mutex); - ret = _regulator_enable(rdev); - mutex_unlock(&rdev->mutex); - - if (ret != 0 && rdev->supply) - regulator_disable(rdev->supply); - - return ret; + return _regulator_enable(regulator, true); } EXPORT_SYMBOL_GPL(regulator_enable); -- 2.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/