diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-07-08 18:51:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-07-08 18:51:57 -0400 |
commit | f263fbb8d60824993c1b64385056a3cfdbb21d45 (patch) | |
tree | 9ce14a362e1cb0aef2b4a79d6fb84d883118cce3 /kernel/irq/affinity.c | |
parent | 026d15f6b9878794fae1f794cae881ccd65052e5 (diff) | |
parent | 6aed468480e8b03ece5a395fe8013e66348a2547 (diff) |
Merge tag 'pci-v4.13-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
Pull PCI updates from Bjorn Helgaas:
- add sysfs max_link_speed/width, current_link_speed/width (Wong Vee
Khee)
- make host bridge IRQ mapping much more generic (Matthew Minter,
Lorenzo Pieralisi)
- convert most drivers to pci_scan_root_bus_bridge() (Lorenzo
Pieralisi)
- mutex sriov_configure() (Jakub Kicinski)
- mutex pci_error_handlers callbacks (Christoph Hellwig)
- split ->reset_notify() into ->reset_prepare()/reset_done()
(Christoph Hellwig)
- support multiple PCIe portdrv interrupts for MSI as well as MSI-X
(Gabriele Paoloni)
- allocate MSI/MSI-X vector for Downstream Port Containment (Gabriele
Paoloni)
- fix MSI IRQ affinity pre/post/min_vecs issue (Michael Hernandez)
- test INTx masking during enumeration, not at run-time (Piotr Gregor)
- avoid using device_may_wakeup() for runtime PM (Rafael J. Wysocki)
- restore the status of PCI devices across hibernation (Chen Yu)
- keep parent resources that start at 0x0 (Ard Biesheuvel)
- enable ECRC only if device supports it (Bjorn Helgaas)
- restore PRI and PASID state after Function-Level Reset (CQ Tang)
- skip DPC event if device is not present (Keith Busch)
- check domain when matching SMBIOS info (Sujith Pandel)
- mark Intel XXV710 NIC INTx masking as broken (Alex Williamson)
- avoid AMD SB7xx EHCI USB wakeup defect (Kai-Heng Feng)
- work around long-standing Macbook Pro poweroff issue (Bjorn Helgaas)
- add Switchtec "running" status flag (Logan Gunthorpe)
- fix dra7xx incorrect RW1C IRQ register usage (Arvind Yadav)
- modify xilinx-nwl IRQ chip for legacy interrupts (Bharat Kumar
Gogada)
- move VMD SRCU cleanup after bus, child device removal (Jon Derrick)
- add Faraday clock handling (Linus Walleij)
- configure Rockchip MPS and reorganize (Shawn Lin)
- limit Qualcomm TLP size to 2K (hardware issue) (Srinivas Kandagatla)
- support Tegra MSI 64-bit addressing (Thierry Reding)
- use Rockchip normal (not privileged) register bank (Shawn Lin)
- add HiSilicon Kirin SoC PCIe controller driver (Xiaowei Song)
- add Sigma Designs Tango SMP8759 PCIe controller driver (Marc
Gonzalez)
- add MediaTek PCIe host controller support (Ryder Lee)
- add Qualcomm IPQ4019 support (John Crispin)
- add HyperV vPCI protocol v1.2 support (Jork Loeser)
- add i.MX6 regulator support (Quentin Schulz)
* tag 'pci-v4.13-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci: (113 commits)
PCI: tango: Add Sigma Designs Tango SMP8759 PCIe host bridge support
PCI: Add DT binding for Sigma Designs Tango PCIe controller
PCI: rockchip: Use normal register bank for config accessors
dt-bindings: PCI: Add documentation for MediaTek PCIe
PCI: Remove __pci_dev_reset() and pci_dev_reset()
PCI: Split ->reset_notify() method into ->reset_prepare() and ->reset_done()
PCI: xilinx: Make of_device_ids const
PCI: xilinx-nwl: Modify IRQ chip for legacy interrupts
PCI: vmd: Move SRCU cleanup after bus, child device removal
PCI: vmd: Correct comment: VMD domains start at 0x10000, not 0x1000
PCI: versatile: Add local struct device pointers
PCI: tegra: Do not allocate MSI target memory
PCI: tegra: Support MSI 64-bit addressing
PCI: rockchip: Use local struct device pointer consistently
PCI: rockchip: Check for clk_prepare_enable() errors during resume
MAINTAINERS: Remove Wenrui Li as Rockchip PCIe driver maintainer
PCI: rockchip: Configure RC's MPS setting
PCI: rockchip: Reconfigure configuration space header type
PCI: rockchip: Split out rockchip_pcie_cfg_configuration_accesses()
PCI: rockchip: Move configuration accesses into rockchip_pcie_cfg_atu()
...
Diffstat (limited to 'kernel/irq/affinity.c')
-rw-r--r-- | kernel/irq/affinity.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/kernel/irq/affinity.c b/kernel/irq/affinity.c index d2747f9c5707..d69bd77252a7 100644 --- a/kernel/irq/affinity.c +++ b/kernel/irq/affinity.c | |||
@@ -110,6 +110,13 @@ irq_create_affinity_masks(int nvecs, const struct irq_affinity *affd) | |||
110 | struct cpumask *masks; | 110 | struct cpumask *masks; |
111 | cpumask_var_t nmsk, *node_to_present_cpumask; | 111 | cpumask_var_t nmsk, *node_to_present_cpumask; |
112 | 112 | ||
113 | /* | ||
114 | * If there aren't any vectors left after applying the pre/post | ||
115 | * vectors don't bother with assigning affinity. | ||
116 | */ | ||
117 | if (!affv) | ||
118 | return NULL; | ||
119 | |||
113 | if (!zalloc_cpumask_var(&nmsk, GFP_KERNEL)) | 120 | if (!zalloc_cpumask_var(&nmsk, GFP_KERNEL)) |
114 | return NULL; | 121 | return NULL; |
115 | 122 | ||
@@ -192,15 +199,19 @@ out: | |||
192 | 199 | ||
193 | /** | 200 | /** |
194 | * irq_calc_affinity_vectors - Calculate the optimal number of vectors | 201 | * irq_calc_affinity_vectors - Calculate the optimal number of vectors |
202 | * @minvec: The minimum number of vectors available | ||
195 | * @maxvec: The maximum number of vectors available | 203 | * @maxvec: The maximum number of vectors available |
196 | * @affd: Description of the affinity requirements | 204 | * @affd: Description of the affinity requirements |
197 | */ | 205 | */ |
198 | int irq_calc_affinity_vectors(int maxvec, const struct irq_affinity *affd) | 206 | int irq_calc_affinity_vectors(int minvec, int maxvec, const struct irq_affinity *affd) |
199 | { | 207 | { |
200 | int resv = affd->pre_vectors + affd->post_vectors; | 208 | int resv = affd->pre_vectors + affd->post_vectors; |
201 | int vecs = maxvec - resv; | 209 | int vecs = maxvec - resv; |
202 | int ret; | 210 | int ret; |
203 | 211 | ||
212 | if (resv > minvec) | ||
213 | return 0; | ||
214 | |||
204 | get_online_cpus(); | 215 | get_online_cpus(); |
205 | ret = min_t(int, cpumask_weight(cpu_present_mask), vecs) + resv; | 216 | ret = min_t(int, cpumask_weight(cpu_present_mask), vecs) + resv; |
206 | put_online_cpus(); | 217 | put_online_cpus(); |