2 * drivers/power/process.c - Functions for starting/stopping processes on
5 * Originally from swsusp.
11 #include <linux/interrupt.h>
12 #include <linux/suspend.h>
13 #include <linux/module.h>
14 #include <linux/syscalls.h>
15 #include <linux/freezer.h>
18 * Timeout for stopping processes
20 #define TIMEOUT (20 * HZ)
22 #define FREEZER_KERNEL_THREADS 0
23 #define FREEZER_USER_SPACE 1
25 static inline int freezeable(struct task_struct
* p
)
28 (p
->flags
& PF_NOFREEZE
) ||
35 * freezing is complete, mark current process as frozen
37 static inline void frozen_process(void)
39 if (!unlikely(current
->flags
& PF_NOFREEZE
)) {
40 current
->flags
|= PF_FROZEN
;
43 clear_freeze_flag(current
);
46 /* Refrigerator is place where frozen processes are stored :-). */
47 void refrigerator(void)
49 /* Hmm, should we be allowed to suspend when there are realtime
54 if (freezing(current
)) {
61 save
= current
->state
;
62 pr_debug("%s entered refrigerator\n", current
->comm
);
64 spin_lock_irq(¤t
->sighand
->siglock
);
65 recalc_sigpending(); /* We sent fake signal, clean it up */
66 spin_unlock_irq(¤t
->sighand
->siglock
);
69 set_current_state(TASK_UNINTERRUPTIBLE
);
74 pr_debug("%s left refrigerator\n", current
->comm
);
75 __set_current_state(save
);
78 <<<<<<< HEAD
:kernel
/power
/process
.c
79 static void fake_signal_wake_up(struct task_struct
*p
, int resume
)
81 static void fake_signal_wake_up(struct task_struct
*p
)
82 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:kernel
/power
/process
.c
86 spin_lock_irqsave(&p
->sighand
->siglock
, flags
);
87 <<<<<<< HEAD
:kernel
/power
/process
.c
88 signal_wake_up(p
, resume
);
91 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:kernel
/power
/process
.c
92 spin_unlock_irqrestore(&p
->sighand
->siglock
, flags
);
95 <<<<<<< HEAD
:kernel
/power
/process
.c
96 static void send_fake_signal(struct task_struct
*p
)
98 if (task_is_stopped(p
))
99 force_sig_specific(SIGSTOP
, p
);
100 fake_signal_wake_up(p
, task_is_stopped(p
));
104 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:kernel
/power
/process
.c
105 static int has_mm(struct task_struct
*p
)
107 return (p
->mm
&& !(p
->flags
& PF_BORROWED_MM
));
111 * freeze_task - send a freeze request to given task
112 * @p: task to send the request to
113 * @with_mm_only: if set, the request will only be sent if the task has its
115 * Return value: 0, if @with_mm_only is set and the task has no mm of its
116 * own or the task is frozen, 1, otherwise
118 * The freeze request is sent by seting the tasks's TIF_FREEZE flag and
119 * either sending a fake signal to it or waking it up, depending on whether
120 * or not it has its own mm (ie. it is a user land task). If @with_mm_only
121 * is set and the task has no mm of its own (ie. it is a kernel thread),
122 * its TIF_FREEZE flag should not be set.
124 * The task_lock() is necessary to prevent races with exit_mm() or
125 * use_mm()/unuse_mm() from occuring.
127 static int freeze_task(struct task_struct
*p
, int with_mm_only
)
134 if (!signal_pending(p
))
135 <<<<<<< HEAD
:kernel
/power
/process
.c
136 fake_signal_wake_up(p
, 0);
138 fake_signal_wake_up(p
);
139 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:kernel
/power
/process
.c
144 wake_up_state(p
, TASK_INTERRUPTIBLE
);
153 <<<<<<< HEAD
:kernel
/power
/process
.c
156 fake_signal_wake_up(p
);
157 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:kernel
/power
/process
.c
163 wake_up_state(p
, TASK_INTERRUPTIBLE
);
172 static void cancel_freezing(struct task_struct
*p
)
177 pr_debug(" clean up: %s\n", p
->comm
);
178 clear_freeze_flag(p
);
179 spin_lock_irqsave(&p
->sighand
->siglock
, flags
);
180 recalc_sigpending_and_wake(p
);
181 spin_unlock_irqrestore(&p
->sighand
->siglock
, flags
);
185 static int try_to_freeze_tasks(int freeze_user_space
)
187 struct task_struct
*g
, *p
;
188 unsigned long end_time
;
190 struct timeval start
, end
;
192 unsigned int elapsed_csecs
;
194 do_gettimeofday(&start
);
196 end_time
= jiffies
+ TIMEOUT
;
199 read_lock(&tasklist_lock
);
200 do_each_thread(g
, p
) {
201 if (frozen(p
) || !freezeable(p
))
204 <<<<<<< HEAD
:kernel
/power
/process
.c
205 if (task_is_traced(p
) && frozen(p
->parent
)) {
211 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:kernel
/power
/process
.c
212 if (!freeze_task(p
, freeze_user_space
))
215 <<<<<<< HEAD
:kernel
/power
/process
.c
216 if (!freezer_should_skip(p
))
219 * Now that we've done set_freeze_flag, don't
220 * perturb a task in TASK_STOPPED or TASK_TRACED.
221 * It is "frozen enough". If the task does wake
222 * up, it will immediately call try_to_freeze.
224 if (!task_is_stopped_or_traced(p
) &&
225 !freezer_should_skip(p
))
226 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:kernel
/power
/process
.c
228 } while_each_thread(g
, p
);
229 read_unlock(&tasklist_lock
);
230 yield(); /* Yield is okay here */
231 if (time_after(jiffies
, end_time
))
235 do_gettimeofday(&end
);
236 elapsed_csecs64
= timeval_to_ns(&end
) - timeval_to_ns(&start
);
237 do_div(elapsed_csecs64
, NSEC_PER_SEC
/ 100);
238 elapsed_csecs
= elapsed_csecs64
;
241 /* This does not unfreeze processes that are already frozen
242 * (we have slightly ugly calling convention in that respect,
243 * and caller must call thaw_processes() if something fails),
244 * but it cleans up leftover PF_FREEZE requests.
247 printk(KERN_ERR
"Freezing of tasks failed after %d.%02d seconds "
248 "(%d tasks refusing to freeze):\n",
249 elapsed_csecs
/ 100, elapsed_csecs
% 100, todo
);
251 read_lock(&tasklist_lock
);
252 do_each_thread(g
, p
) {
254 if (freezing(p
) && !freezer_should_skip(p
))
255 printk(KERN_ERR
" %s\n", p
->comm
);
258 } while_each_thread(g
, p
);
259 read_unlock(&tasklist_lock
);
261 printk("(elapsed %d.%02d seconds) ", elapsed_csecs
/ 100,
262 elapsed_csecs
% 100);
265 return todo
? -EBUSY
: 0;
269 * freeze_processes - tell processes to enter the refrigerator
271 int freeze_processes(void)
275 printk("Freezing user space processes ... ");
276 error
= try_to_freeze_tasks(FREEZER_USER_SPACE
);
281 printk("Freezing remaining freezable tasks ... ");
282 error
= try_to_freeze_tasks(FREEZER_KERNEL_THREADS
);
292 static void thaw_tasks(int thaw_user_space
)
294 struct task_struct
*g
, *p
;
296 read_lock(&tasklist_lock
);
297 do_each_thread(g
, p
) {
301 if (!p
->mm
== thaw_user_space
)
305 } while_each_thread(g
, p
);
306 read_unlock(&tasklist_lock
);
309 void thaw_processes(void)
311 printk("Restarting tasks ... ");
312 thaw_tasks(FREEZER_KERNEL_THREADS
);
313 thaw_tasks(FREEZER_USER_SPACE
);
318 EXPORT_SYMBOL(refrigerator
);