vserver 1.9.5.x5
[linux-2.6.git] / kernel / power / main.c
index 2f08a43..0f78207 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (c) 2003 Patrick Mochel
  * Copyright (c) 2003 Open Source Development Lab
  * 
- * This file is release under the GPLv2
+ * This file is released under the GPLv2
  *
  */
 
@@ -22,7 +22,7 @@
 DECLARE_MUTEX(pm_sem);
 
 struct pm_ops * pm_ops = NULL;
-u32 pm_disk_mode = PM_DISK_SHUTDOWN;
+suspend_disk_method_t pm_disk_mode = PM_DISK_SHUTDOWN;
 
 /**
  *     pm_set_ops - Set the global power method table. 
@@ -46,7 +46,7 @@ void pm_set_ops(struct pm_ops * ops)
  *     the platform can enter the requested state.
  */
 
-static int suspend_prepare(u32 state)
+static int suspend_prepare(suspend_state_t state)
 {
        int error = 0;
 
@@ -65,7 +65,7 @@ static int suspend_prepare(u32 state)
                        goto Thaw;
        }
 
-       if ((error = device_suspend(state)))
+       if ((error = device_suspend(PMSG_SUSPEND)))
                goto Finish;
        return 0;
  Finish:
@@ -78,13 +78,14 @@ static int suspend_prepare(u32 state)
 }
 
 
-static int suspend_enter(u32 state)
+static int suspend_enter(suspend_state_t state)
 {
        int error = 0;
        unsigned long flags;
 
        local_irq_save(flags);
-       if ((error = device_power_down(state)))
+
+       if ((error = device_power_down(PMSG_SUSPEND)))
                goto Done;
        error = pm_ops->enter(state);
        device_power_up();
@@ -99,10 +100,10 @@ static int suspend_enter(u32 state)
  *     @state:         State we're coming out of.
  *
  *     Call platform code to clean up, restart processes, and free the 
- *     console that we've allocated.
+ *     console that we've allocated. This is not called for suspend-to-disk.
  */
 
-static void suspend_finish(u32 state)
+static void suspend_finish(suspend_state_t state)
 {
        device_resume();
        if (pm_ops && pm_ops->finish)
@@ -133,21 +134,21 @@ char * pm_states[] = {
  *     we've woken up).
  */
 
-static int enter_state(u32 state)
+static int enter_state(suspend_state_t state)
 {
        int error;
 
        if (down_trylock(&pm_sem))
                return -EBUSY;
 
-       /* Suspend is hard to get right on SMP. */
-       if (num_online_cpus() != 1) {
-               error = -EPERM;
+       if (state == PM_SUSPEND_DISK) {
+               error = pm_suspend_disk();
                goto Unlock;
        }
 
-       if (state == PM_SUSPEND_DISK) {
-               error = pm_suspend_disk();
+       /* Suspend is hard to get right on SMP. */
+       if (num_online_cpus() != 1) {
+               error = -EPERM;
                goto Unlock;
        }
 
@@ -183,7 +184,7 @@ int software_suspend(void)
  *     structure, and enter (above).
  */
 
-int pm_suspend(u32 state)
+int pm_suspend(suspend_state_t state)
 {
        if (state > PM_SUSPEND_ON && state < PM_SUSPEND_MAX)
                return enter_state(state);
@@ -221,7 +222,7 @@ static ssize_t state_show(struct subsystem * subsys, char * buf)
 
 static ssize_t state_store(struct subsystem * subsys, const char * buf, size_t n)
 {
-       u32 state = PM_SUSPEND_STANDBY;
+       suspend_state_t state = PM_SUSPEND_STANDBY;
        char ** s;
        char *p;
        int error;