summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2005-07-26 11:21:38 -0600
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-26 14:35:41 -0700
commit47f61f397cc08b5a9a815bd03cb10c48dab66034 (patch)
tree747b69851f018f80ae8f7dcf512cb8f6d43eae02 /kernel
parenta6fa657b9d5c892c6a92912632c4b5715955b4f8 (diff)
downloadlinux-3.10-47f61f397cc08b5a9a815bd03cb10c48dab66034.tar.gz
linux-3.10-47f61f397cc08b5a9a815bd03cb10c48dab66034.tar.bz2
linux-3.10-47f61f397cc08b5a9a815bd03cb10c48dab66034.zip
[PATCH] Add missing device_suspsend(PMSG_FREEZE) calls.
In the recent addition of device_suspend calls into sys_reboot two code paths were missed. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sys.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/sys.c b/kernel/sys.c
index 9a24374c23b..5fc10d3e389 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -391,6 +391,7 @@ asmlinkage long sys_reboot(int magic1, int magic2, unsigned int cmd, void __user
case LINUX_REBOOT_CMD_RESTART:
notifier_call_chain(&reboot_notifier_list, SYS_RESTART, NULL);
system_state = SYSTEM_RESTART;
+ device_suspend(PMSG_FREEZE);
device_shutdown();
printk(KERN_EMERG "Restarting system.\n");
machine_restart(NULL);
@@ -452,6 +453,7 @@ asmlinkage long sys_reboot(int magic1, int magic2, unsigned int cmd, void __user
}
notifier_call_chain(&reboot_notifier_list, SYS_RESTART, NULL);
system_state = SYSTEM_RESTART;
+ device_suspend(PMSG_FREEZE);
device_shutdown();
printk(KERN_EMERG "Starting new kernel\n");
machine_shutdown();