The patch titled Fix build breakage with CONFIG_X86_VSMP has been added to the -mm tree. Its filename is fix-build-breakage-with-config_x86_vsmp.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fix build breakage with CONFIG_X86_VSMP From: Ravikiran G Thirumalai <kiran@xxxxxxxxxxxx> arch/x86_64/kernel/built-in.o(.init.text+0xab13): In function `vsmp_init': arch/x86_64/kernel/vsmp.c:32: undefined reference to `ioremap' arch/x86_64/kernel/built-in.o(.init.text+0xab24):arch/x86_64/kernel/vsmp.c:33: undefined reference to `readl' Kernel build breaks with CONFIG_X86_VSMP. Probably due to some header file cleanups in 2.6.19-rc1. Signed-off-by: Ravikiran Thirumalai <kiran@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/kernel/vsmp.c | 1 + 1 files changed, 1 insertion(+) diff -puN arch/x86_64/kernel/vsmp.c~fix-build-breakage-with-config_x86_vsmp arch/x86_64/kernel/vsmp.c --- a/arch/x86_64/kernel/vsmp.c~fix-build-breakage-with-config_x86_vsmp +++ a/arch/x86_64/kernel/vsmp.c @@ -14,6 +14,7 @@ #include <linux/pci_ids.h> #include <linux/pci_regs.h> #include <asm/pci-direct.h> +#include <asm/io.h> static int __init vsmp_init(void) { _ Patches currently in -mm which might be from kiran@xxxxxxxxxxxx are fix-build-breakage-with-config_x86_vsmp.patch slab-leaks3-default-y.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