vfio/platform: Disable virqfds on cleanup
[ Upstream commit fcdc0d3d40bc26c105acf8467f7d9018970944ae ]
irqfds for mask and unmask that are not specifically disabled by the
user are leaked. Remove any irqfds during cleanup
Cc: Eric Auger <eric.auger@redhat.com>
Cc: <stable@vger.kernel.org>
Fixes: a7fa7c77cf ("vfio/platform: implement IRQ masking/unmasking via an eventfd")
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Link: https://lore.kernel.org/r/20240308230557.805580-6-alex.williamson@redhat.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
(cherry picked from commit af47ec223f6d9d72d2ddd3fb31a7d1210eafd0bb)
Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com>
This commit is contained in:
committed by
theshaenix
parent
4bede8556a
commit
039b208649
@@ -329,8 +329,11 @@ void vfio_platform_irq_cleanup(struct vfio_platform_device *vdev)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < vdev->num_irqs; i++)
|
||||
for (i = 0; i < vdev->num_irqs; i++) {
|
||||
vfio_virqfd_disable(&vdev->irqs[i].mask);
|
||||
vfio_virqfd_disable(&vdev->irqs[i].unmask);
|
||||
vfio_set_trigger(vdev, i, -1, NULL);
|
||||
}
|
||||
|
||||
vdev->num_irqs = 0;
|
||||
kfree(vdev->irqs);
|
||||
|
||||
Reference in New Issue
Block a user