]> 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)
commit812b7b3cf776f31cf70295a7f745de4373b3fbe3
tree6e6c0c8a1368d6e6e3ca5cf051161bad6450e094
parente18fca0337c5734830c435803cc55bb4565e0c9f
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: 2e797ef49d01 ("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