]> git.baikalelectronics.ru Git - kernel.git/commit
PM / reboot: call syscore_shutdown() after disable_nonboot_cpus()
authorHuacai Chen <chenhc@lemote.com>
Sun, 7 Apr 2013 02:14:14 +0000 (02:14 +0000)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 8 Apr 2013 20:10:40 +0000 (22:10 +0200)
commit4cd6fd9845e684e1e3df3ade7bc5baf601fb3f7b
tree8b175282bdf49043dc57711e121ee603be8cb188
parenta0f0f45e9edc3b685b9487cd91992690197fba80
PM / reboot: call syscore_shutdown() after disable_nonboot_cpus()

As commit 0f9f5e46 (PM / Core: Introduce struct syscore_ops for core
subsystems PM) say, syscore_ops operations should be carried with one
CPU on-line and interrupts disabled. However, after commit 3ffd65e22
(kernel/sys.c: call disable_nonboot_cpus() in kernel_restart()),
syscore_shutdown() is called before disable_nonboot_cpus(), so break
the rules. We have a MIPS machine with a 8259A PIC, and there is an
external timer (HPET) linked at 8259A. Since 8259A has been shutdown
too early (by syscore_shutdown()), disable_nonboot_cpus() runs without
timer interrupt, so it hangs and reboot fails. This patch call
syscore_shutdown() a little later (after disable_nonboot_cpus()) to
avoid reboot failure, this is the same way as poweroff does.

For consistency, add disable_nonboot_cpus() to kernel_halt().

Signed-off-by: Huacai Chen <chenhc@lemote.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
kernel/sys.c