x86: export vector_used_by_percpu_irq

Impact: build fix

lguest can be built as a module and makes use of this new symbol:

ERROR: "vector_used_by_percpu_irq" [drivers/lguest/lg.ko] undefined!

export it.

Signed-off-by: Ingo Molnar <mingo@elte.hu>

+3
+3
arch/x86/kernel/irq.c
··· 9 9 #include <asm/apic.h> 10 10 #include <asm/io_apic.h> 11 11 #include <asm/smp.h> 12 + #include <asm/irq.h> 12 13 13 14 atomic_t irq_err_count; 14 15 ··· 191 190 #endif 192 191 return sum; 193 192 } 193 + 194 + EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);