[PATCH] report which device failed to suspend

From: Nickolai Zeldovich
Date: Thu May 27 2004 - 17:37:44 EST


When your machine stops suspending all of a sudden, a patch such as the
one below is helpful to diagnose which device or driver is misbehaving and
causing the suspend sequence to fail.

-- kolya

--- drivers/base/power/suspend.c 2004/05/27 22:09:47 1.1
+++ drivers/base/power/suspend.c 2004/05/27 22:28:36
@@ -42,6 +42,10 @@
if (dev->bus && dev->bus->suspend && !dev->power.power_state)
error = dev->bus->suspend(dev,state);

+ if (error)
+ printk(KERN_ERR "Could not suspend device %s: error %d\n",
+ kobject_name(&dev->kobj), error);
+
return error;
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/