The patch titled x86: visws: fix UP build has been removed from the -mm tree. Its filename was x86-visws-fix-up-build.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: x86: visws: fix UP build From: Alexander Beregalov <a.beregalov@xxxxxxxxx> arch/x86/kernel/visws_quirks.c: In function 'visws_find_smp_config': arch/x86/kernel/visws_quirks.c:229: error: 'setup_max_cpus' undeclared Signed-off-by: Alexander Beregalov <a.beregalov@xxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/kernel/visws_quirks.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN arch/x86/kernel/visws_quirks.c~x86-visws-fix-up-build arch/x86/kernel/visws_quirks.c --- a/arch/x86/kernel/visws_quirks.c~x86-visws-fix-up-build +++ a/arch/x86/kernel/visws_quirks.c @@ -220,8 +220,10 @@ static int __init visws_find_smp_config( ncpus = CO_CPU_MAX; } +#ifdef CONFIG_SMP if (ncpus > setup_max_cpus) ncpus = setup_max_cpus; +#endif #ifdef CONFIG_X86_LOCAL_APIC smp_found_config = 1; _ Patches currently in -mm which might be from a.beregalov@xxxxxxxxx are origin.patch befs-fix-build-on-parisc.patch linux-next.patch x86-visws-fix-up-build.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