Hi Rusty, Today's linux-next merge of the rr tree got a conflict in arch/x86/mach-default/setup.c between commit 6bda2c8b32febeb38ee128047253751e080bad52 ("x86: remove subarchitecture support") from the x86 tree and commit cafecba4dd4e08412d1141a260c38e35ca597710 ("cpumask:irqaction-remove-unnecessary-initializers") from the rr tree. The former moved the code that the latter changed. I removed the file and added the following patch. I can carry this as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --git a/arch/x86/kernel/irqinit_32.c b/arch/x86/kernel/irqinit_32.c index e4630e2..eabdd9a 100644 --- a/arch/x86/kernel/irqinit_32.c +++ b/arch/x86/kernel/irqinit_32.c @@ -82,7 +82,6 @@ void __init init_ISA_irqs(void) */ static struct irqaction irq2 = { .handler = no_action, - .mask = CPU_MASK_NONE, .name = "cascade", }; diff --git a/arch/x86/kernel/probe_32.c b/arch/x86/kernel/probe_32.c index 31493c5..55150b1 100644 --- a/arch/x86/kernel/probe_32.c +++ b/arch/x86/kernel/probe_32.c @@ -334,7 +334,6 @@ void __init trap_init_hook(void) static struct irqaction irq0 = { .handler = timer_interrupt, .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL | IRQF_TIMER, - .mask = CPU_MASK_NONE, .name = "timer" }; @@ -367,7 +366,6 @@ void __init time_init_hook(void) return; } - irq0.mask = cpumask_of_cpu(0); setup_irq(0, &irq0); } -- 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