aboutsummaryrefslogtreecommitdiff
path: root/drivers/pci/msi.c
AgeCommit message (Expand)AuthorFilesLines
2017-10-18PCI/MSI: Set MSI_FLAG_MUST_REACTIVATE in core codeGravatar Thomas Gleixner 1-0/+2
2017-09-08Merge tag 'pci-v4.14-changes' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-5/+22
2017-08-25PCI/MSI: Don't warn when irq_create_affinity_masks() returns NULLGravatar Christoph Hellwig 1-10/+3
2017-08-14PCI/MSI: Assume MSIs use real Requester ID, not an aliasGravatar Robin Murphy 1-5/+22
2017-07-08Merge tag 'pci-v4.13-changes' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-12/+2
2017-06-22irqchip/MSI: Use irq_domain_update_bus_token instead of an open coded accessGravatar Marc Zyngier 1-1/+1
2017-05-22PCI/MSI: Ignore affinity if pre/post vector count is more than min_vecsGravatar Michael Hernandez 1-12/+2
2017-05-08Merge tag 'pci-v4.12-changes' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-5/+12
2017-04-28Merge branch 'pci/msi' into nextGravatar Bjorn Helgaas 1-4/+6
2017-04-11PCI: remove pci_enable_msixGravatar Christoph Hellwig 1-21/+0
2017-03-29PCI/MSI: Skip disabling disconnected devicesGravatar Keith Busch 1-1/+6
2017-03-23PCI/MSI: Use dev_printk() when possibleGravatar Bjorn Helgaas 1-2/+4
2017-03-09PCI/MSI: Make pci_msi_shutdown() and pci_msix_shutdown() staticGravatar Bjorn Helgaas 1-2/+2
2017-03-02PCI: add an API to get node from vectorGravatar Shaohua Li 1-0/+16
2017-02-23Merge tag 'pci-v4.11-changes' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-100/+22
2017-02-17PCI/MSI: Fix msi_desc->affinity memory leak when freeing MSI IRQsGravatar Prarit Bhargava 1-1/+1
2017-02-10PCI/MSI: Return -ENOSPC if pci_enable_msi_range() can't get enough vectorsGravatar Dennis Chen 1-1/+1
2017-02-10PCI/MSI: Check that we have a legacy interrupt line before using itGravatar Christoph Hellwig 1-3/+5
2017-02-10PCI/MSI: Remove pci_msi_domain_{alloc,free}_irqs()Gravatar Christoph Hellwig 1-28/+2
2017-02-10PCI/MSI: Remove unused pci_msi_create_default_irq_domain()Gravatar Christoph Hellwig 1-48/+2
2017-02-10PCI/MSI: Return failure when msix_setup_entries() failsGravatar Christophe JAILLET 1-1/+1
2017-02-02PCI/MSI: Don't apply affinity if there aren't enough vectors leftGravatar Christoph Hellwig 1-0/+10
2017-01-13PCI/MSI: Remove pci_enable_msi_{exact,range}()Gravatar Christoph Hellwig 1-17/+9
2017-01-11PCI/MSI: Fix msi_capability_init() kernel-doc warningsGravatar Randy Dunlap 1-1/+1
2016-12-15Merge tag 'pci-v4.10-changes' of git://git.kernel.org/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-1/+2
2016-11-09PCI/MSI: Provide pci_alloc_irq_vectors_affinity()Gravatar Christoph Hellwig 1-7/+13
2016-11-09PCI/MSI: Propagate IRQ affinity description through the MSI codeGravatar Christoph Hellwig 1-33/+33
2016-11-09genirq/affinity: Handle pre/post vectors in irq_create_affinity_masks()Gravatar Christoph Hellwig 1-2/+4
2016-11-09genirq/affinity: Handle pre/post vectors in irq_calc_affinity_vectors()Gravatar Christoph Hellwig 1-4/+4
2016-11-08PCI/MSI: Check for NULL affinity mask in pci_irq_get_affinity()Gravatar Jan Beulich 1-1/+2
2016-10-26doc: Add missing parameter for msi_setupGravatar Stephen Hemminger 1-0/+2
2016-09-15Merge branch 'irq/for-block' into irq/coreGravatar Thomas Gleixner 1-58/+103
2016-09-14pci/msi: Retrieve affinity for a vectorGravatar Thomas Gleixner 1-0/+31
2016-09-14genirq/msi: Switch to new irq spreading infrastructureGravatar Thomas Gleixner 1-56/+72
2016-09-14genirq/msi: Add cpumask allocation to alloc_msi_entryGravatar Thomas Gleixner 1-4/+2
2016-09-12PCI/MSI: Setup MSI domain on a per-device basis using IORT ACPI tableGravatar Tomasz Nowicki 1-3/+8
2016-08-26Merge tag 'pci-v4.8-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-8/+10
2016-08-18PCI: Call pci_intx() when using legacy interrupts in pci_alloc_irq_vectors()Gravatar Christoph Hellwig 1-1/+4
2016-08-16PCI: Use positive flags in pci_alloc_irq_vectors()Gravatar Christoph Hellwig 1-8/+7
2016-08-09genirq/msi: Make sure PCI MSIs are activated earlyGravatar Marc Zyngier 1-0/+2
2016-07-21PCI: Spread interrupt vectors in pci_alloc_irq_vectors()Gravatar Christoph Hellwig 1-45/+89
2016-07-21PCI: Provide sensible IRQ vector alloc/free routinesGravatar Christoph Hellwig 1-0/+89
2016-07-21PCI: Make the "entries" argument to pci_enable_msix() optionalGravatar Christoph Hellwig 1-14/+16
2016-07-21PCI: Switch msix_program_entries() to use pci_msix_desc_addr()Gravatar Christoph Hellwig 1-4/+2
2016-07-21PCI: Add pci_msix_desc_addr() helperGravatar Christoph Hellwig 1-8/+9
2016-01-21Merge tag 'pci-v4.5-changes' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-4/+0
2015-12-20genirq/msi: Export functions to allow MSI domains in modulesGravatar Jake Oshins 1-0/+4
2015-12-04PCI/MSI: Only use the generic MSI layer when domain is hierarchicalGravatar Marc Zyngier 1-2/+2
2015-11-30PCI/MSI: Remove empty pci_msi_init_pci_dev()Gravatar Bjorn Helgaas 1-4/+0
2015-11-06Merge tag 'pci-v4.4-changes' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-14/+20