mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
freezer: kill PF_FREEZING
With the previous changes, there's no meaningful difference between PF_FREEZING and PF_FROZEN. Remove PF_FREEZING and use PF_FROZEN instead in task_contributes_to_load(). Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
85f1d47665
commit
376fede80e
2 changed files with 1 additions and 8 deletions
|
@ -44,9 +44,6 @@ repeat:
|
|||
recalc_sigpending(); /* We sent fake signal, clean it up */
|
||||
spin_unlock_irq(¤t->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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue