diff options
author | Uwe Geuder <linuxkernel2015-ugeuder@snkmail.com> | 2015-06-29 16:35:05 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-07-06 19:18:11 -0400 |
commit | b51f9b103f58db2c5c0a20d6cee26c8bc255d3ae (patch) | |
tree | 1f7a614cccf7181d973e8b9b0b8c362ad6fd3fe8 /Documentation | |
parent | d770e558e21961ad6cfdf0ff7df0eb5d7d4f0754 (diff) |
PM / hibernate: clarify resume documentation
it was not the whole truth that kernel mode cannot be used with swap on LVM
Signed-off-by: Uwe Geuder <linuxkernel2015-ugeuder@snkmail.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/power/swsusp.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Documentation/power/swsusp.txt b/Documentation/power/swsusp.txt index f732a8321e8a..8cc17ca71813 100644 --- a/Documentation/power/swsusp.txt +++ b/Documentation/power/swsusp.txt | |||
@@ -410,8 +410,17 @@ Documentation/usb/persist.txt. | |||
410 | 410 | ||
411 | Q: Can I suspend-to-disk using a swap partition under LVM? | 411 | Q: Can I suspend-to-disk using a swap partition under LVM? |
412 | 412 | ||
413 | A: No. You can suspend successfully, but you'll not be able to | 413 | A: Yes and No. You can suspend successfully, but the kernel will not be able |
414 | resume. uswsusp should be able to work with LVM. See suspend.sf.net. | 414 | to resume on its own. You need an initramfs that can recognize the resume |
415 | situation, activate the logical volume containing the swap volume (but not | ||
416 | touch any filesystems!), and eventually call | ||
417 | |||
418 | echo -n "$major:$minor" > /sys/power/resume | ||
419 | |||
420 | where $major and $minor are the respective major and minor device numbers of | ||
421 | the swap volume. | ||
422 | |||
423 | uswsusp works with LVM, too. See http://suspend.sourceforge.net/ | ||
415 | 424 | ||
416 | Q: I upgraded the kernel from 2.6.15 to 2.6.16. Both kernels were | 425 | Q: I upgraded the kernel from 2.6.15 to 2.6.16. Both kernels were |
417 | compiled with the similar configuration files. Anyway I found that | 426 | compiled with the similar configuration files. Anyway I found that |