]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
x86/PCI: VMD: Synchronize with RCU freeing MSI IRQ descs
authorKeith Busch <keith.busch@intel.com>
Thu, 4 Aug 2016 22:09:09 +0000 (16:09 -0600)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 19 Sep 2016 18:14:05 +0000 (13:14 -0500)
commitee6ee49fd09fa17c92aadf07961d0ff406fceab8
treeb159d9b1004faceb210b73be19dd66125e964d43
parentb31822277abcd7c83d1c1c0af876da9ccdf3b7d6
x86/PCI: VMD: Synchronize with RCU freeing MSI IRQ descs

Fix a potential race when disabling MSI/MSI-X on a VMD domain device.  If
the VMD interrupt service is running, it may see a disabled IRQ.  We can
synchronize RCU just before freeing the MSI descriptor.  This is safe since
the irq_desc lock isn't held, and the descriptor is valid even though it is
disabled.  After vmd_msi_free(), though, the handler is reinitialized to
handle_bad_irq(), so we can't let the VMD ISR's list iteration see the
disabled IRQ after this.

Signed-off-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by Jon Derrick: <jonathan.derrick@intel.com>
arch/x86/pci/vmd.c