xfs: xfs_buf: drop useless LIST_HEAD
[linux-2.6-block.git] / kernel / freezer.c
CommitLineData
8174f150
MH
1/*
2 * kernel/freezer.c - Function to freeze a process
3 *
4 * Originally from kernel/power/process.c
5 */
6
7#include <linux/interrupt.h>
8#include <linux/suspend.h>
9984de1a 9#include <linux/export.h>
8174f150
MH
10#include <linux/syscalls.h>
11#include <linux/freezer.h>
8a32c441 12#include <linux/kthread.h>
8174f150 13
a3201227
TH
14/* total number of freezing conditions in effect */
15atomic_t system_freezing_cnt = ATOMIC_INIT(0);
16EXPORT_SYMBOL(system_freezing_cnt);
17
55f2503c
PL
18/* indicate whether PM freezing is in effect, protected by
19 * system_transition_mutex
20 */
a3201227
TH
21bool pm_freezing;
22bool pm_nosig_freezing;
23
85fbd722
TH
24/*
25 * Temporary export for the deadlock workaround in ata_scsi_hotplug().
26 * Remove once the hack becomes unnecessary.
27 */
28EXPORT_SYMBOL_GPL(pm_freezing);
29
0c9af092
TH
30/* protects freezing and frozen transitions */
31static DEFINE_SPINLOCK(freezer_lock);
8174f150 32
a3201227
TH
33/**
34 * freezing_slow_path - slow path for testing whether a task needs to be frozen
35 * @p: task to be tested
36 *
37 * This function is called by freezing() if system_freezing_cnt isn't zero
38 * and tests whether @p needs to enter and stay in frozen state. Can be
39 * called under any context. The freezers are responsible for ensuring the
40 * target tasks see the updated state.
41 */
42bool freezing_slow_path(struct task_struct *p)
43{
2b44c4db 44 if (p->flags & (PF_NOFREEZE | PF_SUSPEND_TASK))
a3201227
TH
45 return false;
46
a34c80a7 47 if (test_tsk_thread_flag(p, TIF_MEMDIE))
51fae6da
CW
48 return false;
49
a3201227
TH
50 if (pm_nosig_freezing || cgroup_freezing(p))
51 return true;
52
34b087e4 53 if (pm_freezing && !(p->flags & PF_KTHREAD))
a3201227
TH
54 return true;
55
56 return false;
57}
58EXPORT_SYMBOL(freezing_slow_path);
59
8174f150 60/* Refrigerator is place where frozen processes are stored :-). */
8a32c441 61bool __refrigerator(bool check_kthr_stop)
8174f150
MH
62{
63 /* Hmm, should we be allowed to suspend when there are realtime
64 processes around? */
a0acae0e 65 bool was_frozen = false;
5ece3eae 66 long save = current->state;
8174f150 67
8174f150
MH
68 pr_debug("%s entered refrigerator\n", current->comm);
69
8174f150
MH
70 for (;;) {
71 set_current_state(TASK_UNINTERRUPTIBLE);
5ece3eae
TH
72
73 spin_lock_irq(&freezer_lock);
74 current->flags |= PF_FROZEN;
6907483b 75 if (!freezing(current) ||
8a32c441 76 (check_kthr_stop && kthread_should_stop()))
5ece3eae
TH
77 current->flags &= ~PF_FROZEN;
78 spin_unlock_irq(&freezer_lock);
79
80 if (!(current->flags & PF_FROZEN))
8174f150 81 break;
a0acae0e 82 was_frozen = true;
8174f150
MH
83 schedule();
84 }
6301cb95 85
8174f150 86 pr_debug("%s left refrigerator\n", current->comm);
50fb4f7f
TH
87
88 /*
89 * Restore saved task state before returning. The mb'd version
90 * needs to be used; otherwise, it might silently break
91 * synchronization which depends on ordered task state change.
92 */
93 set_current_state(save);
a0acae0e
TH
94
95 return was_frozen;
8174f150 96}
a0acae0e 97EXPORT_SYMBOL(__refrigerator);
8174f150
MH
98
99static void fake_signal_wake_up(struct task_struct *p)
100{
101 unsigned long flags;
102
37ad8aca
TH
103 if (lock_task_sighand(p, &flags)) {
104 signal_wake_up(p, 0);
105 unlock_task_sighand(p, &flags);
106 }
8174f150
MH
107}
108
109/**
839e3407
TH
110 * freeze_task - send a freeze request to given task
111 * @p: task to send the request to
8174f150 112 *
37f08be1
MPS
113 * If @p is freezing, the freeze request is sent either by sending a fake
114 * signal (if it's not a kernel thread) or waking it up (if it's a kernel
115 * thread).
839e3407
TH
116 *
117 * RETURNS:
118 * %false, if @p is not freezing or already frozen; %true, otherwise
8174f150 119 */
839e3407 120bool freeze_task(struct task_struct *p)
8174f150 121{
0c9af092 122 unsigned long flags;
0c9af092 123
613f5d13
CC
124 /*
125 * This check can race with freezer_do_not_count, but worst case that
126 * will result in an extra wakeup being sent to the task. It does not
127 * race with freezer_count(), the barriers in freezer_count() and
128 * freezer_should_skip() ensure that either freezer_count() sees
129 * freezing == true in try_to_freeze() and freezes, or
130 * freezer_should_skip() sees !PF_FREEZE_SKIP and freezes the task
131 * normally.
132 */
133 if (freezer_should_skip(p))
134 return false;
135
0c9af092 136 spin_lock_irqsave(&freezer_lock, flags);
a3201227
TH
137 if (!freezing(p) || frozen(p)) {
138 spin_unlock_irqrestore(&freezer_lock, flags);
139 return false;
140 }
8174f150 141
5d8f72b5 142 if (!(p->flags & PF_KTHREAD))
8cfe400c 143 fake_signal_wake_up(p);
5d8f72b5 144 else
8174f150 145 wake_up_state(p, TASK_INTERRUPTIBLE);
a3201227 146
0c9af092 147 spin_unlock_irqrestore(&freezer_lock, flags);
a3201227 148 return true;
8174f150
MH
149}
150
a5be2d0d 151void __thaw_task(struct task_struct *p)
dc52ddc0 152{
0c9af092 153 unsigned long flags;
a5be2d0d 154
0c9af092 155 spin_lock_irqsave(&freezer_lock, flags);
34b087e4 156 if (frozen(p))
a5be2d0d 157 wake_up_process(p);
0c9af092 158 spin_unlock_irqrestore(&freezer_lock, flags);
dc52ddc0 159}
96ee6d85
TH
160
161/**
34b087e4 162 * set_freezable - make %current freezable
96ee6d85
TH
163 *
164 * Mark %current freezable and enter refrigerator if necessary.
165 */
34b087e4 166bool set_freezable(void)
96ee6d85
TH
167{
168 might_sleep();
169
170 /*
171 * Modify flags while holding freezer_lock. This ensures the
172 * freezer notices that we aren't frozen yet or the freezing
173 * condition is visible to try_to_freeze() below.
174 */
175 spin_lock_irq(&freezer_lock);
176 current->flags &= ~PF_NOFREEZE;
96ee6d85
TH
177 spin_unlock_irq(&freezer_lock);
178
179 return try_to_freeze();
180}
34b087e4 181EXPORT_SYMBOL(set_freezable);