OSDN Git Service

5cc588c1abab99161324245f76373e207685eaa4
[uclinux-h8/linux.git] / kernel / power / process.c
1 /*
2  * drivers/power/process.c - Functions for starting/stopping processes on 
3  *                           suspend transitions.
4  *
5  * Originally from swsusp.
6  */
7
8
9 #undef DEBUG
10
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>
19 #include <linux/kmod.h>
20 #include <trace/events/power.h>
21
22 /* 
23  * Timeout for stopping processes
24  */
25 unsigned int __read_mostly freeze_timeout_msecs = 20 * MSEC_PER_SEC;
26
27 static int try_to_freeze_tasks(bool user_only)
28 {
29         struct task_struct *g, *p;
30         unsigned long end_time;
31         unsigned int todo;
32         bool wq_busy = false;
33         struct timeval start, end;
34         u64 elapsed_msecs64;
35         unsigned int elapsed_msecs;
36         bool wakeup = false;
37         int sleep_usecs = USEC_PER_MSEC;
38
39         do_gettimeofday(&start);
40
41         end_time = jiffies + msecs_to_jiffies(freeze_timeout_msecs);
42
43         if (!user_only)
44                 freeze_workqueues_begin();
45
46         while (true) {
47                 todo = 0;
48                 read_lock(&tasklist_lock);
49                 do_each_thread(g, p) {
50                         if (p == current || !freeze_task(p))
51                                 continue;
52
53                         if (!freezer_should_skip(p))
54                                 todo++;
55                 } while_each_thread(g, p);
56                 read_unlock(&tasklist_lock);
57
58                 if (!user_only) {
59                         wq_busy = freeze_workqueues_busy();
60                         todo += wq_busy;
61                 }
62
63                 if (!todo || time_after(jiffies, end_time))
64                         break;
65
66                 if (pm_wakeup_pending()) {
67                         wakeup = true;
68                         break;
69                 }
70
71                 /*
72                  * We need to retry, but first give the freezing tasks some
73                  * time to enter the refrigerator.  Start with an initial
74                  * 1 ms sleep followed by exponential backoff until 8 ms.
75                  */
76                 usleep_range(sleep_usecs / 2, sleep_usecs);
77                 if (sleep_usecs < 8 * USEC_PER_MSEC)
78                         sleep_usecs *= 2;
79         }
80
81         do_gettimeofday(&end);
82         elapsed_msecs64 = timeval_to_ns(&end) - timeval_to_ns(&start);
83         do_div(elapsed_msecs64, NSEC_PER_MSEC);
84         elapsed_msecs = elapsed_msecs64;
85
86         if (todo) {
87                 printk("\n");
88                 printk(KERN_ERR "Freezing of tasks %s after %d.%03d seconds "
89                        "(%d tasks refusing to freeze, wq_busy=%d):\n",
90                        wakeup ? "aborted" : "failed",
91                        elapsed_msecs / 1000, elapsed_msecs % 1000,
92                        todo - wq_busy, wq_busy);
93
94                 if (!wakeup) {
95                         read_lock(&tasklist_lock);
96                         do_each_thread(g, p) {
97                                 if (p != current && !freezer_should_skip(p)
98                                     && freezing(p) && !frozen(p))
99                                         sched_show_task(p);
100                         } while_each_thread(g, p);
101                         read_unlock(&tasklist_lock);
102                 }
103         } else {
104                 printk("(elapsed %d.%03d seconds) ", elapsed_msecs / 1000,
105                         elapsed_msecs % 1000);
106         }
107
108         return todo ? -EBUSY : 0;
109 }
110
111 /*
112  * Returns true if all freezable tasks (except for current) are frozen already
113  */
114 static bool check_frozen_processes(void)
115 {
116         struct task_struct *g, *p;
117         bool ret = true;
118
119         read_lock(&tasklist_lock);
120         for_each_process_thread(g, p) {
121                 if (p != current && !freezer_should_skip(p) &&
122                     !frozen(p)) {
123                         ret = false;
124                         goto done;
125                 }
126         }
127 done:
128         read_unlock(&tasklist_lock);
129
130         return ret;
131 }
132
133 /**
134  * freeze_processes - Signal user space processes to enter the refrigerator.
135  * The current thread will not be frozen.  The same process that calls
136  * freeze_processes must later call thaw_processes.
137  *
138  * On success, returns 0.  On failure, -errno and system is fully thawed.
139  */
140 int freeze_processes(void)
141 {
142         int error;
143         int oom_kills_saved;
144
145         error = __usermodehelper_disable(UMH_FREEZING);
146         if (error)
147                 return error;
148
149         /* Make sure this task doesn't get frozen */
150         current->flags |= PF_SUSPEND_TASK;
151
152         if (!pm_freezing)
153                 atomic_inc(&system_freezing_cnt);
154
155         pm_wakeup_clear();
156         printk("Freezing user space processes ... ");
157         pm_freezing = true;
158         oom_kills_saved = oom_kills_count();
159         error = try_to_freeze_tasks(true);
160         if (!error) {
161                 __usermodehelper_set_disable_depth(UMH_DISABLED);
162                 oom_killer_disable();
163
164                 /*
165                  * There might have been an OOM kill while we were
166                  * freezing tasks and the killed task might be still
167                  * on the way out so we have to double check for race.
168                  */
169                 if (oom_kills_count() != oom_kills_saved &&
170                                 !check_frozen_processes()) {
171                         __usermodehelper_set_disable_depth(UMH_ENABLED);
172                         printk("OOM in progress.");
173                         error = -EBUSY;
174                         goto done;
175                 }
176                 printk("done.");
177         }
178 done:
179         printk("\n");
180         BUG_ON(in_atomic());
181
182         if (error)
183                 thaw_processes();
184         return error;
185 }
186
187 /**
188  * freeze_kernel_threads - Make freezable kernel threads go to the refrigerator.
189  *
190  * On success, returns 0.  On failure, -errno and only the kernel threads are
191  * thawed, so as to give a chance to the caller to do additional cleanups
192  * (if any) before thawing the userspace tasks. So, it is the responsibility
193  * of the caller to thaw the userspace tasks, when the time is right.
194  */
195 int freeze_kernel_threads(void)
196 {
197         int error;
198
199         printk("Freezing remaining freezable tasks ... ");
200         pm_nosig_freezing = true;
201         error = try_to_freeze_tasks(false);
202         if (!error)
203                 printk("done.");
204
205         printk("\n");
206         BUG_ON(in_atomic());
207
208         if (error)
209                 thaw_kernel_threads();
210         return error;
211 }
212
213 void thaw_processes(void)
214 {
215         struct task_struct *g, *p;
216         struct task_struct *curr = current;
217
218         trace_suspend_resume(TPS("thaw_processes"), 0, true);
219         if (pm_freezing)
220                 atomic_dec(&system_freezing_cnt);
221         pm_freezing = false;
222         pm_nosig_freezing = false;
223
224         oom_killer_enable();
225
226         printk("Restarting tasks ... ");
227
228         __usermodehelper_set_disable_depth(UMH_FREEZING);
229         thaw_workqueues();
230
231         read_lock(&tasklist_lock);
232         do_each_thread(g, p) {
233                 /* No other threads should have PF_SUSPEND_TASK set */
234                 WARN_ON((p != curr) && (p->flags & PF_SUSPEND_TASK));
235                 __thaw_task(p);
236         } while_each_thread(g, p);
237         read_unlock(&tasklist_lock);
238
239         WARN_ON(!(curr->flags & PF_SUSPEND_TASK));
240         curr->flags &= ~PF_SUSPEND_TASK;
241
242         usermodehelper_enable();
243
244         schedule();
245         printk("done.\n");
246         trace_suspend_resume(TPS("thaw_processes"), 0, false);
247 }
248
249 void thaw_kernel_threads(void)
250 {
251         struct task_struct *g, *p;
252
253         pm_nosig_freezing = false;
254         printk("Restarting kernel threads ... ");
255
256         thaw_workqueues();
257
258         read_lock(&tasklist_lock);
259         do_each_thread(g, p) {
260                 if (p->flags & (PF_KTHREAD | PF_WQ_WORKER))
261                         __thaw_task(p);
262         } while_each_thread(g, p);
263         read_unlock(&tasklist_lock);
264
265         schedule();
266         printk("done.\n");
267 }