The patch titled arch/x86/kernel/microcode_core.c: do not WARN_ON(cpu != 0) during resume has been removed from the -mm tree. Its filename was arch-x86-kernel-microcode_corec-do-not-warn_oncpu-=-0-during-resume.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: arch/x86/kernel/microcode_core.c: do not WARN_ON(cpu != 0) during resume From: Ian Campbell <ian.campbell@xxxxxxxxxx> 871b72dd "x86: microcode: use smp_call_function_single instead of set_cpus_allowed, cleanup of synchronization logic" included: static int mc_sysdev_resume(struct sys_device *dev) { [...] + /* + * All non-bootup cpus are still disabled, + * so only CPU 0 will apply ucode here. + * + * Moreover, there can be no concurrent + * updates from any other places at this point. + */ + WARN_ON(cpu != 0); However suspend/resume under Xen doesn't need to hot unplug all the CPUs, so we don't; the hypervisor can manage the context save/restore for all CPUs. It would be unnecessary to load microcode.ko in a Xen domU but if it does occur (e.g. because a distro installs the tools by default) we would like to avoid the warning on resume. Since the real constraint here is that we are running on the CPU for which we would like to load microcode (which in all practical circumstances is CPU0) just check for that and return if we are resuming a different CPU. There is no danger of concurrent updates, even if we ignore the fact that all but one CPUs are unplugged on native, because sysdev_resume() is single threaded. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Cc: Jeremy Fitzhardinge <jeremy@xxxxxxxx> Cc: Dmitry Adamushko <dmitry.adamushko@xxxxxxxxx> Cc: Hugh Dickins <hugh@xxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Acked-by: Anton Arapov <anton@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/kernel/microcode_core.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff -puN arch/x86/kernel/microcode_core.c~arch-x86-kernel-microcode_corec-do-not-warn_oncpu-=-0-during-resume arch/x86/kernel/microcode_core.c --- a/arch/x86/kernel/microcode_core.c~arch-x86-kernel-microcode_corec-do-not-warn_oncpu-=-0-during-resume +++ a/arch/x86/kernel/microcode_core.c @@ -443,18 +443,9 @@ static int mc_sysdev_resume(struct sys_d int cpu = dev->id; struct ucode_cpu_info *uci = ucode_cpu_info + cpu; - if (!cpu_online(cpu)) + if (cpu != smp_processor_id()) return 0; - /* - * All non-bootup cpus are still disabled, - * so only CPU 0 will apply ucode here. - * - * Moreover, there can be no concurrent - * updates from any other places at this point. - */ - WARN_ON(cpu != 0); - if (uci->valid && uci->mc) microcode_ops->apply_microcode(cpu); _ Patches currently in -mm which might be from ian.campbell@xxxxxxxxxx are origin.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html