[linux-pm] Nested suspends; messages vs. states

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, 23 Mar 2005, Patrick Mochel wrote:

> On Wed, 23 Mar 2005, Alan Stern wrote:
> 
> > So what's wrong with changing it into:
> >
> > 	void suspend_to_ram()
> > 	{
> > 		lock all devices
> > 		suspend all devices
> > 		turn off main power
> > 		/* Zzzz... */
> > 		resume all devices
> > 		unlock all devices
> > 	}
> >
> > the possibility of devices being removed or added while the PM core is
> > traversing its lists.  Locking does protect against that -- or rather, it
> > will once the mechanisms have been added to the driver model core.
> 
> That would add a lot of complication. You never want to add more locks
> than you need to.

The semaphores themselves are required for other reasons, but I take your
point.  You never want to lock more items than you need to.

>  Without locking, each suspend operation is a single
> discete action with no dependencies on anything else. Having to lock every
> device now intertwines them all in a very complicated and disgusting
> manner.

Actually the locking rule is quite simple and elegant: Never lock a 
device while holding a descendant's lock.

>  It would make it potentially very hard to debug and add a lot of
> time to the process.

Hard to debug, maybe... we can't tell without actually trying.  Adding a
lot of time to the suspend process, no.  Acquiring the locks would block
only for things that should cause you to block anyway, like trying to
suspend a device while it's being probed.

(Or did you mean it would add a lot of time to the development process?  I 
doubt it, but it would force people to think about issues they would 
prefer to ignore.)

> Note that you're locking ideas are at least original, but I'm having a
> harder and harder time taking them seriously without any code. I highly
> recommend that you at least try to codify the locking changes before
> making suggestions. It will weed out a lot of under-cooked ideas and get
> us a lot closer to a workable solution. As Linus would say "Show me the
> code!"

A large part of the concept is already coded up and part of the kernel
since about 2.6.9, and it works quite well.  Its scope is currently
restricted to the USB layer; I'm proposing to make it more general.

In fact at this stage it's more a matter for discussion under the topic 
of driver-model development, so I'm going to stop talking about it on 
linux-pm.  You indicated that you had some relevant driver-model patches 
-- would you like to send them to me?

Alan Stern


[Index of Archives]     [Linux ACPI]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [CPU Freq]     [Kernel Newbies]     [Fedora Kernel]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux