diff options
author | Jiang Liu <jiang.liu@linux.intel.com> | 2015-06-10 16:54:59 +0800 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2015-07-30 14:05:57 -0500 |
commit | 991de2e59090e55c65a7f59a049142e3c480f7bd (patch) | |
tree | b6b31c900abc49312c0306b4a0d596d74a22f71c /arch/x86/pci/irq.c | |
parent | 890e4847587fcff5eb0438e90992ad7d2a261f33 (diff) | |
download | talos-op-linux-991de2e59090e55c65a7f59a049142e3c480f7bd.tar.gz talos-op-linux-991de2e59090e55c65a7f59a049142e3c480f7bd.zip |
PCI, x86: Implement pcibios_alloc_irq() and pcibios_free_irq()
To support IOAPIC hotplug, we need to allocate PCI IRQ resources on demand
and free them when not used anymore.
Implement pcibios_alloc_irq() and pcibios_free_irq() to dynamically
allocate and free PCI IRQs.
Remove mp_should_keep_irq(), which is no longer used.
[bhelgaas: changelog]
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/pci/irq.c')
-rw-r--r-- | arch/x86/pci/irq.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index 9bd115484745..72108f0b66b1 100644 --- a/arch/x86/pci/irq.c +++ b/arch/x86/pci/irq.c @@ -1257,22 +1257,9 @@ static int pirq_enable_irq(struct pci_dev *dev) return 0; } -bool mp_should_keep_irq(struct device *dev) -{ - if (dev->power.is_prepared) - return true; -#ifdef CONFIG_PM - if (dev->power.runtime_status == RPM_SUSPENDING) - return true; -#endif - - return false; -} - static void pirq_disable_irq(struct pci_dev *dev) { - if (io_apic_assign_pci_irqs && !mp_should_keep_irq(&dev->dev) && - dev->irq_managed && dev->irq) { + if (io_apic_assign_pci_irqs && dev->irq_managed && dev->irq) { mp_unmap_irq(dev->irq); dev->irq = 0; dev->irq_managed = 0; |