2 * drivers/power/process.c - Functions for starting/stopping processes on
5 * Originally from swsusp.
11 #include <linux/interrupt.h>
12 #include <linux/oom.h>
13 #include <linux/suspend.h>
14 #include <linux/module.h>
15 #include <linux/syscalls.h>
16 #include <linux/freezer.h>
17 #include <linux/delay.h>
18 #include <linux/workqueue.h>
21 * Timeout for stopping processes
23 #define TIMEOUT (20 * HZ)
25 static inline int freezeable(struct task_struct * p)
28 (p->flags & PF_NOFREEZE) ||
34 static int try_to_freeze_tasks(bool sig_only)
36 struct task_struct *g, *p;
37 unsigned long end_time;
40 struct timeval start, end;
42 unsigned int elapsed_csecs;
44 do_gettimeofday(&start);
46 end_time = jiffies + TIMEOUT;
49 freeze_workqueues_begin();
53 read_lock(&tasklist_lock);
54 do_each_thread(g, p) {
55 if (frozen(p) || !freezeable(p))
58 if (!freeze_task(p, sig_only))
62 * Now that we've done set_freeze_flag, don't
63 * perturb a task in TASK_STOPPED or TASK_TRACED.
64 * It is "frozen enough". If the task does wake
65 * up, it will immediately call try_to_freeze.
67 if (!task_is_stopped_or_traced(p) &&
68 !freezer_should_skip(p))
70 } while_each_thread(g, p);
71 read_unlock(&tasklist_lock);
74 wq_busy = freeze_workqueues_busy();
78 if (!todo || time_after(jiffies, end_time))
82 * We need to retry, but first give the freezing tasks some
83 * time to enter the regrigerator.
88 do_gettimeofday(&end);
89 elapsed_csecs64 = timeval_to_ns(&end) - timeval_to_ns(&start);
90 do_div(elapsed_csecs64, NSEC_PER_SEC / 100);
91 elapsed_csecs = elapsed_csecs64;
94 /* This does not unfreeze processes that are already frozen
95 * (we have slightly ugly calling convention in that respect,
96 * and caller must call thaw_processes() if something fails),
97 * but it cleans up leftover PF_FREEZE requests.
100 printk(KERN_ERR "Freezing of tasks failed after %d.%02d seconds "
101 "(%d tasks refusing to freeze, wq_busy=%d):\n",
102 elapsed_csecs / 100, elapsed_csecs % 100,
103 todo - wq_busy, wq_busy);
107 read_lock(&tasklist_lock);
108 do_each_thread(g, p) {
110 if (freezing(p) && !freezer_should_skip(p))
114 } while_each_thread(g, p);
115 read_unlock(&tasklist_lock);
117 printk("(elapsed %d.%02d seconds) ", elapsed_csecs / 100,
118 elapsed_csecs % 100);
121 return todo ? -EBUSY : 0;
125 * freeze_processes - tell processes to enter the refrigerator
127 int freeze_processes(void)
131 printk("Freezing user space processes ... ");
132 error = try_to_freeze_tasks(true);
137 printk("Freezing remaining freezable tasks ... ");
138 error = try_to_freeze_tasks(false);
143 oom_killer_disable();
151 static void thaw_tasks(bool nosig_only)
153 struct task_struct *g, *p;
155 read_lock(&tasklist_lock);
156 do_each_thread(g, p) {
160 if (nosig_only && should_send_signal(p))
163 if (cgroup_freezing_or_frozen(p))
167 } while_each_thread(g, p);
168 read_unlock(&tasklist_lock);
171 void thaw_processes(void)
175 printk("Restarting tasks ... ");