linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Deadlock scenario in regulator core
@ 2011-03-22 22:02 David Collins
  2011-03-22 22:31 ` Mark Brown
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: David Collins @ 2011-03-22 22:02 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown; +Cc: linux-arm-msm, linux-kernel

Hi Liam and Mark,

I was analyzing the mutex lock usage in drivers/regulator/core.c and found
at least one way to reach deadlock: regulator_enable is called for a
regulator at the same time that regulator_disable is called for that
regulator's supply.  Consider this simple example.  There are two
regulators: S1 and L2, as well as two consumers: A and B.  They are
connected as follows:

S1 --> L2 --> B
|
|--> A

Assume that A has already called regulator_enable for S1 some time in the
past.

Consumer A thread execution:
	regulator_disable(S1)
	mutex_lock(S1)
	_regulator_disable(S1)
	_notifier_call_chain(S1)
	mutex_lock(L2)

Consumer B thread execution:
	regulator_enable(L2)
	mutex_lock(L2)
	_regulator_enable(L2)
	mutex_lock(S1)

The locks for S1 and L2 are taken in opposite orders in the two threads;
therefore, it is possible to achieve deadlock.  I am not sure about the
best way to resolve this situation.  Is there a correctness requirement
that regulator_enable holds the child regulator's lock when it attempts to
enable the parent regulator?  Likewise, is the lock around
_notifier_call_chain required?

Thanks,
David Collins

-- 
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.

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

end of thread, other threads:[~2011-03-25 10:57 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-22 22:02 Deadlock scenario in regulator core David Collins
2011-03-22 22:31 ` Mark Brown
2011-03-22 23:30   ` David Collins
2011-03-22 23:45     ` Mark Brown
2011-03-22 22:37 ` Steven Rostedt
2011-03-22 23:08   ` David Collins
2011-03-22 23:19     ` Steven Rostedt
2011-03-22 23:41       ` David Collins
2011-03-23  0:07         ` Steven Rostedt
2011-03-23  0:11           ` Mark Brown
2011-03-25 10:55           ` Peter Zijlstra
2011-03-23  0:01       ` Mark Brown
2011-03-23  0:38         ` Steven Rostedt
2011-03-23 10:42           ` Mark Brown
2011-03-25 10:59             ` Peter Zijlstra
2011-03-22 22:43 ` 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).