On Thu, 21 Oct 2010, Konrad Rzeszutek Wilk wrote: > On Thu, Oct 21, 2010 at 09:13:16AM -0700, Randy Dunlap wrote: > > On Thu, 21 Oct 2010 15:15:29 +1100 Stephen Rothwell wrote: > > > > > Hi all, > > > > > > Reminder: do not add 2.6.38 destined stuff to linux-next until after > > > 2.6.37-rc1 is released. > > > > > > Changes since 20101020: > > > > > > When CONFIG_SMP is not enabled: > > > > arch/x86/pci/xen.c:401: error: 'nr_ioapics' undeclared (first use in this function) > > Thank you, > > Stefano, this one is yours. > Yep. It was a missing #include in arch/x86/pci/xen.c, I fixed it adding a commit to my linux-next branch. --- commit fa4c2e29e4a30dc3e9d3f83944eeea63f78350a5 Author: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> Date: Thu Oct 21 17:40:08 2010 +0100 xen: add a missing #include to arch/x86/pci/xen.c Add missing #include <asm/io_apic.h> to arch/x86/pci/xen.c. Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c index 4f5df3d..4a32df2 100644 --- a/arch/x86/pci/xen.c +++ b/arch/x86/pci/xen.c @@ -10,6 +10,7 @@ #include <linux/acpi.h> #include <linux/io.h> +#include <asm/io_apic.h> #include <asm/pci_x86.h> #include <asm/xen/hypervisor.h> -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html