swsusp.txt
来自「Linux Kernel 2.6.9 for OMAP1710」· 文本 代码 · 共 204 行
TXT
204 行
From kernel/suspend.c: * BIG FAT WARNING ********************************************************* * * If you have unsupported (*) devices using DMA... * ...say goodbye to your data. * * If you touch anything on disk between suspend and resume... * ...kiss your data goodbye. * * If your disk driver does not support suspend... (IDE does) * ...you'd better find out how to get along * without your data. * * If you change kernel command line between suspend and resume... * ...prepare for nasty fsck or worse. * * (*) pm interface support is needed to make it safe.You need to append resume=/dev/your_swap_partition to kernel commandline. Then you suspend by echo 4 > /proc/acpi/sleep.Article about goals and implementation of Software Suspend for Linux~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Author: G傖bor KutiLast revised: 2003-10-20 by Pavel MachekIdea and goals to achieveNowadays it is common in several laptops that they have a suspend button. Itsaves the state of the machine to a filesystem or to a partition and switchesto standby mode. Later resuming the machine the saved state is loaded back toram and the machine can continue its work. It has two real benefits. First wesave ourselves the time machine goes down and later boots up, energy costsreal high when running from batteries. The other gain is that we don't have tointerrupt our programs so processes that are calculating something for a longtime shouldn't need to be written interruptible.Using the codeYou have two ways to use this code. The first one is is with a patchedSysVinit (my patch is against 2.76 and available at my home page). Youmight call 'swsusp' or 'shutdown -z <time>'. Next way is to echo 4 >/proc/acpi/sleep.Either way it saves the state of the machine into active swaps and thenreboots. You must explicitly specify the swap partition to resume from with``resume='' kernel option. If signature is found it loads and restores savedstate. If the option ``noresume'' is specified as a boot parameter, it skipsthe resuming.In the meantime while the system is suspended you should not touch any of thehardware!About the codeThings to implement- We should only make a copy of data related to kernel segment, since any process data won't be changed.- Should make more sanity checks. Or are these enough?Not so important ideas for implementing- If a real time process is running then don't suspend the machine.- Support for adding/removing hardware while suspended?- We should not free pages at the beginning so aggressively, most of them go there anyway..Sleep states summary (thanx, Ducrot)====================================In a really perfect world:echo 1 > /proc/acpi/sleep # for standbyecho 2 > /proc/acpi/sleep # for suspend to ramecho 3 > /proc/acpi/sleep # for suspend to ram, but with more power conservativeecho 4 > /proc/acpi/sleep # for suspend to diskecho 5 > /proc/acpi/sleep # for shutdown unfriendly the systemand perhapsecho 4b > /proc/acpi/sleep # for suspend to disk via s4biosFrequently Asked Questions==========================Q: well, suspending a server is IMHO a really stupid thing,but... (Diego Zuccato):A: You bought new UPS for your server. How do you install it withoutbringing machine down? Suspend to disk, rearrange power cables,resume.You have your server on UPS. Power died, and UPS is indicating 30seconds to failure. What do you do? Suspend to disk.Ethernet card in your server died. You want to replace it. Yourserver is not hotplug capable. What do you do? Suspend to disk,replace ethernet card, resume. If you are fast your users will noteven see broken connections.Q: Maybe I'm missing something, but why don't the regular I/O paths work?A: We do use the regular I/O paths. However we cannot restore the datato its original location as we load it. That would create aninconsistent kernel state which would certainly result in an oops.Instead, we load the image into unused memory and then atomically copyit back to it original location. This implies, of course, a maximumimage size of half the amount of memory.There are two solutions to this:* require half of memory to be free during suspend. That way you canread "new" data onto free spots, then cli and copy* assume we had special "polling" ide driver that only uses memorybetween 0-640KB. That way, I'd have to make sure that 0-640KB is freeduring suspending, but otherwise it would work...suspend2 shares this fundamental limitation, but does not include userdata and disk caches into "used memory" by saving them inadvance. That means that the limitation goes away in practice.Q: Does linux support ACPI S4?A: No.When swsusp was created, ACPI was not too widespread, so we tried toavoid using ACPI-specific stuff. ACPI also is/was notoriouslybuggy. These days swsusp works on APM-only i386 machines and evenwithout any power managment at all. Some versions also work on PPC.That means that machine does not enter S4 on suspend-to-disk, butsimply enters S5. That has few advantages, you can for example bootwindows on next boot, and return to your Linux session later. Youcould even have few different Linuxes on your box (not sharing anypartitions), and switch between them.It also has disadvantages. On HP nx5000, if you unplug power cordwhile machine is suspended-to-disk, Linux will fail to notice that.Q: My machine doesn't work with ACPI. How can I use swsusp than ?A: Do a reboot() syscall with right parameters. Warning: glibc gets inits way, so check with strace:reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, 0xd000fce2)(Thanks to Peter Osterlund:)#include <unistd.h>#include <syscall.h>#define LINUX_REBOOT_MAGIC1 0xfee1dead#define LINUX_REBOOT_MAGIC2 672274793#define LINUX_REBOOT_CMD_SW_SUSPEND 0xD000FCE2int main(){ syscall(SYS_reboot, LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_SW_SUSPEND, 0); return 0;}Q: What is 'suspend2'?A: suspend2 is 'Software Suspend 2', a forked implementation ofsuspend-to-disk which is available as separate patches for 2.4 and 2.6kernels from swsusp.sourceforge.net. It includes support for SMP, 4GBhighmem and preemption. It also has a extensible architecture thatallows for arbitrary transformations on the image (compression,encryption) and arbitrary backends for writing the image (eg to swapor an NFS share[Work In Progress]). Questions regarding suspend2should be sent to the mailing list available through the suspend2website, and not to the Linux Kernel Mailing List. We are workingtoward merging suspend2 into the mainline kernel.Q: Kernel thread must voluntarily freeze itself (call 'refrigerator'). ButI found some kernel threads don't do it, and they don't freeze, andso the system can't sleep. Is this a known behavior?A: All such kernel threads need to be fixed, one by one. Select placewhere it is safe to be frozen (no kernel semaphores should be held atthat point and it must be safe to sleep there), and add: if (current->flags & PF_FREEZE) refrigerator(PF_FREEZE);Q: What is the difference between between "platform", "shutdown" and"firmware" in /sys/power/disk?A:shutdown: save state in linux, then tell bios to powerdownplatform: save state in linux, then tell bios to powerdown and blink "suspended led"firmware: tell bios to save state itself [needs BIOS-specific suspend partition, and has very little to do with swsusp]"platform" is actually right thing to do, but "shutdown" is mostreliable.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?