freezer: kill PF_FREEZING
[cascardo/linux.git] / kernel / freezer.c
index a257ecd..b8b5621 100644 (file)
@@ -44,9 +44,6 @@ repeat:
        recalc_sigpending(); /* We sent fake signal, clean it up */
        spin_unlock_irq(&current->sighand->siglock);
 
-       /* prevent accounting of that task to load */
-       current->flags |= PF_FREEZING;
-
        for (;;) {
                set_current_state(TASK_UNINTERRUPTIBLE);
                if (!freezing(current) ||
@@ -56,9 +53,6 @@ repeat:
                schedule();
        }
 
-       /* Remove the accounting blocker */
-       current->flags &= ~PF_FREEZING;
-
        /* leave FROZEN */
        spin_lock_irq(&freezer_lock);
        if (freezing(current))