( please remove obsolute [EMAIL PROTECTED]  from further messages!! )

On Saturday 31 March 2007 10:02 am, Ingo Molnar wrote:
> 
> i dont think there's any particular problem here because suspend/resume 
> wont be done during bootup - but we might need a way to move a device to 
> earlier spots in the device tree, even if they got registered later on - 
> instead of forcing the time devices to be registered very early?

I'm about ready to test the appended patch... a "move one device" call
might be safest at this point in the release cycle though.

- Dave

========================        SNIP!
Change how the PM list is constructed, so that devices are added right
after their parents (when they have one) rather than at the end of the
list.  This preserves sequencing guarantees, but enables sequencing of
suspend/resume operations by more important characteristics than "when
device happened to enumerate" ... e.g. clocksources and clockevents
at a clearly defined point during suspend and resume.

This patch has a potential downside for devices that have multiple
power dependencies and which "just happened to work" before.

Signed-off-by: David Brownell <[EMAIL PROTECTED]>

--- g26.orig/drivers/base/power/main.c  2006-07-02 12:30:30.000000000 -0700
+++ g26/drivers/base/power/main.c       2007-03-31 11:02:28.000000000 -0700
@@ -52,12 +52,17 @@ EXPORT_SYMBOL_GPL(device_pm_set_parent);
 int device_pm_add(struct device * dev)
 {
        int error;
+       struct device *parent = dev->parent;
 
-       pr_debug("PM: Adding info for %s:%s\n",
-                dev->bus ? dev->bus->name : "No Bus", dev->kobj.name);
+       pr_debug("PM: Adding info for %s:%s, after %s\n",
+                dev->bus ? dev->bus->name : "No Bus", dev->kobj.name,
+                parent ? parent->bus_id : "(no parent)");
        down(&dpm_list_sem);
-       list_add_tail(&dev->power.entry, &dpm_active);
-       device_pm_set_parent(dev, dev->parent);
+       if (parent)
+               list_add(&dev->power.entry, &parent->power.entry);
+       else
+               list_add_tail(&dev->power.entry, &dpm_active);
+       device_pm_set_parent(dev, parent);
        if ((error = dpm_sysfs_add(dev)))
                list_del(&dev->power.entry);
        up(&dpm_list_sem);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to