diff options
Diffstat (limited to 'Documentation/power')
-rw-r--r-- | Documentation/power/freezing-of-tasks.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Documentation/power/freezing-of-tasks.txt b/Documentation/power/freezing-of-tasks.txt index 04dc1cf9d215..d5c65e8d6a37 100644 --- a/Documentation/power/freezing-of-tasks.txt +++ b/Documentation/power/freezing-of-tasks.txt | |||
@@ -81,7 +81,16 @@ hibernation image has been created and before the system is finally powered off. | |||
81 | The majority of these are user space processes, but if any of the kernel threads | 81 | The majority of these are user space processes, but if any of the kernel threads |
82 | may cause something like this to happen, they have to be freezable. | 82 | may cause something like this to happen, they have to be freezable. |
83 | 83 | ||
84 | 2. The second reason is to prevent user space processes and some kernel threads | 84 | 2. Next, to create the hibernation image we need to free a sufficient amount of |
85 | memory (approximately 50% of available RAM) and we need to do that before | ||
86 | devices are deactivated, because we generally need them for swapping out. Then, | ||
87 | after the memory for the image has been freed, we don't want tasks to allocate | ||
88 | additional memory and we prevent them from doing that by freezing them earlier. | ||
89 | [Of course, this also means that device drivers should not allocate substantial | ||
90 | amounts of memory from their .suspend() callbacks before hibernation, but this | ||
91 | is e separate issue.] | ||
92 | |||
93 | 3. The third reason is to prevent user space processes and some kernel threads | ||
85 | from interfering with the suspending and resuming of devices. A user space | 94 | from interfering with the suspending and resuming of devices. A user space |
86 | process running on a second CPU while we are suspending devices may, for | 95 | process running on a second CPU while we are suspending devices may, for |
87 | example, be troublesome and without the freezing of tasks we would need some | 96 | example, be troublesome and without the freezing of tasks we would need some |
@@ -111,7 +120,7 @@ frozen before the driver's .suspend() callback is executed and it will be | |||
111 | thawed after the driver's .resume() callback has run, so it won't be accessing | 120 | thawed after the driver's .resume() callback has run, so it won't be accessing |
112 | the device while it's suspended. | 121 | the device while it's suspended. |
113 | 122 | ||
114 | 3. Another reason for freezing tasks is to prevent user space processes from | 123 | 4. Another reason for freezing tasks is to prevent user space processes from |
115 | realizing that hibernation (or suspend) operation takes place. Ideally, user | 124 | realizing that hibernation (or suspend) operation takes place. Ideally, user |
116 | space processes should not notice that such a system-wide operation has occurred | 125 | space processes should not notice that such a system-wide operation has occurred |
117 | and should continue running without any problems after the restore (or resume | 126 | and should continue running without any problems after the restore (or resume |