linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] regulator: core: Ensure we lock all regulators
@ 2015-12-01 16:40 Mark Brown
  2015-12-01 16:45 ` Arnd Bergmann
  2015-12-02 20:10 ` Applied "regulator: core: Ensure we lock all regulators" to the regulator tree Mark Brown
  0 siblings, 2 replies; 6+ messages in thread
From: Mark Brown @ 2015-12-01 16:40 UTC (permalink / raw)
  To: Thierry Reding, Arnd Bergmann; +Cc: linux-kernel, Tyler Baker, Mark Brown

The latest workaround for the lockdep interface's not using the second
argument of mutex_lock_nested() changed the loop missed locking the last
regulator due to a thinko with the loop termination condition exiting
one regulator too soon.

Reported-by: Tyler Baker <tyler.baker@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
---

Not tested yet.

 drivers/regulator/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index daffff83ced2..f71db02fcb71 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -141,7 +141,7 @@ static void regulator_lock_supply(struct regulator_dev *rdev)
 	int i;
 
 	mutex_lock(&rdev->mutex);
-	for (i = 1; rdev->supply; rdev = rdev->supply->rdev, i++)
+	for (i = 1; rdev; rdev = rdev->supply->rdev, i++)
 		mutex_lock_nested(&rdev->mutex, i);
 }
 
-- 
2.6.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-12-02 20:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-01 16:40 [PATCH] regulator: core: Ensure we lock all regulators Mark Brown
2015-12-01 16:45 ` Arnd Bergmann
2015-12-01 16:53   ` Mark Brown
2015-12-01 19:37     ` Arnd Bergmann
2015-12-01 19:42       ` Mark Brown
2015-12-02 20:10 ` Applied "regulator: core: Ensure we lock all regulators" to the regulator tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).