mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
6c50384ef8
We're using pci_irq_vector() to obtain the interrupt number and then bind it to the CPU start perf under the protection of spinlock in pmu::start(). pci_irq_vector() might sleep since [1] because it will call msi_domain_get_virq() to get the MSI interrupt number and it needs to acquire dev->msi.data->mutex. Getting a mutex will sleep on contention. So use pci_irq_vector() in an atomic context is problematic. This patch cached the interrupt number in the probe() and uses the cached data instead to avoid potential sleep. [1] commit |
||
---|---|---|
.. | ||
hisi_ptt.c | ||
hisi_ptt.h | ||
Kconfig | ||
Makefile |