[PATCH] USB: Usbcore: Don't try to delete unregistered interfaces
[pandora-kernel.git] / kernel / power / process.c
index 0a08664..3bd0d26 100644 (file)
@@ -59,6 +59,7 @@ int freeze_processes(void)
        int todo;
        unsigned long start_time;
        struct task_struct *g, *p;
+       unsigned long flags;
 
        printk( "Stopping tasks: " );
        start_time = jiffies;
@@ -66,12 +67,9 @@ int freeze_processes(void)
                todo = 0;
                read_lock(&tasklist_lock);
                do_each_thread(g, p) {
-                       unsigned long flags;
                        if (!freezeable(p))
                                continue;
-                       if ((frozen(p)) ||
-                           (p->state == TASK_TRACED) ||
-                           (p->state == TASK_STOPPED))
+                       if (frozen(p))
                                continue;
 
                        freeze(p);