Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 fix from Thomas Gleixner:
"A single bugfix to prevent irq remapping when the ioapic is disabled"

* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/apic: Do not init irq remapping if ioapic is disabled

Changed files
+3
arch
x86
kernel
apic
+3
arch/x86/kernel/apic/apic.c
··· 1623 1623 unsigned long flags; 1624 1624 int ret, ir_stat; 1625 1625 1626 + if (skip_ioapic_setup) 1627 + return; 1628 + 1626 1629 ir_stat = irq_remapping_prepare(); 1627 1630 if (ir_stat < 0 && !x2apic_supported()) 1628 1631 return;