Merge branch 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull smp/hotplug fix from Thomas Gleixner:
"The recent rework of the callback invocation missed to cleanup the
leftovers of the operation, so under certain circumstances a
subsequent CPU hotplug operation accesses stale data and crashes.
Clean it up."

* 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
cpu/hotplug: Reset node state after operation

+5
+5
kernel/cpu.c
··· 632 632 __cpuhp_kick_ap(st); 633 633 } 634 634 635 + /* 636 + * Clean up the leftovers so the next hotplug operation wont use stale 637 + * data. 638 + */ 639 + st->node = st->last = NULL; 635 640 return ret; 636 641 } 637 642