diff options
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/power/swsusp.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/power/swsusp.txt b/Documentation/power/swsusp.txt index 079160e22bcc..f732a8321e8a 100644 --- a/Documentation/power/swsusp.txt +++ b/Documentation/power/swsusp.txt | |||
@@ -220,7 +220,10 @@ Q: After resuming, system is paging heavily, leading to very bad interactivity. | |||
220 | 220 | ||
221 | A: Try running | 221 | A: Try running |
222 | 222 | ||
223 | cat `cat /proc/[0-9]*/maps | grep / | sed 's:.* /:/:' | sort -u` > /dev/null | 223 | cat /proc/[0-9]*/maps | grep / | sed 's:.* /:/:' | sort -u | while read file |
224 | do | ||
225 | test -f "$file" && cat "$file" > /dev/null | ||
226 | done | ||
224 | 227 | ||
225 | after resume. swapoff -a; swapon -a may also be useful. | 228 | after resume. swapoff -a; swapon -a may also be useful. |
226 | 229 | ||