The patch titled x86_64: msi_apic.c build fix has been added to the -mm tree. Its filename is x86_64-msi-apic-build-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: x86_64: msi_apic.c build fix From: Christian Kujau <evil@xxxxxxxxxx> CC drivers/pci/msi-apic.o In file included from include/asm/msi.h:11, from drivers/pci/msi.h:71, from drivers/pci/msi-apic.c:8: include/asm/smp.h:103: error: syntax error before '->' token akpm: nasty. It appears to be static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask) conflicting with include/asm-x86_64/mach_apic.h's #define cpu_mask_to_apicid (genapic->cpu_mask_to_apicid) And I don't know which patch in rc4-mm1 triggered this. Fixing this in the .c file seems wrong. Including asm/smp.h instead of linux/smp.h seems wrong too. Need that .config. Cc: Andi Kleen <ak@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/pci/msi-apic.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/pci/msi-apic.c~x86_64-msi-apic-build-fix drivers/pci/msi-apic.c --- devel/drivers/pci/msi-apic.c~x86_64-msi-apic-build-fix 2006-05-20 04:47:11.000000000 -0700 +++ devel-akpm/drivers/pci/msi-apic.c 2006-05-20 04:47:11.000000000 -0700 @@ -4,6 +4,7 @@ #include <linux/pci.h> #include <linux/irq.h> +#include <asm/smp.h> #include "msi.h" _ Patches currently in -mm which might be from evil@xxxxxxxxxx are x86_64-msi-apic-build-fix.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