]> git.baikalelectronics.ru Git - kernel.git/commit
cpu/hotplug: Prevent state corruption on error rollback
authorThomas Gleixner <tglx@linutronix.de>
Thu, 6 Sep 2018 13:21:38 +0000 (15:21 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 6 Sep 2018 13:21:38 +0000 (15:21 +0200)
commita2d74547b3f00655393abfa18ff618a0b7e6ee69
tree6e6c0c8a1368d6e6e3ca5cf051161bad6450e094
parentd03f41e64253504236140d3ec87179d2e24b787d
cpu/hotplug: Prevent state corruption on error rollback

When a teardown callback fails, the CPU hotplug code brings the CPU back to
the previous state. The previous state becomes the new target state. The
rollback happens in undo_cpu_down() which increments the state
unconditionally even if the state is already the same as the target.

As a consequence the next CPU hotplug operation will start at the wrong
state. This is easily to observe when __cpu_disable() fails.

Prevent the unconditional undo by checking the state vs. target before
incrementing state and fix up the consequently wrong conditional in the
unplug code which handles the failure of the final CPU take down on the
control CPU side.

Fixes: 48a946ea18bf ("smp/hotplug: Rewrite AP state machine core")
Reported-by: Neeraj Upadhyay <neeraju@codeaurora.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Tested-by: Sudeep Holla <sudeep.holla@arm.com>
Tested-by: Neeraj Upadhyay <neeraju@codeaurora.org>
Cc: josh@joshtriplett.org
Cc: peterz@infradead.org
Cc: jiangshanlai@gmail.com
Cc: dzickus@redhat.com
Cc: brendan.jackman@arm.com
Cc: malat@debian.org
Cc: sramana@codeaurora.org
Cc: linux-arm-msm@vger.kernel.org
Cc: stable@vger.kernel.org
Link: https://lkml.kernel.org/r/alpine.DEB.2.21.1809051419580.1416@nanos.tec.linutronix.de
----
kernel/cpu.c