From: Eric Auger Date: Tue, 6 Feb 2018 18:08:26 +0000 (-0700) Subject: hw/vfio/platform: Init the interrupt mutex X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=89202c6fa87d4f181111901bb08dcd1538f8ab35;p=qemu.git hw/vfio/platform: Init the interrupt mutex Add the initialization of the mutex protecting the interrupt list. Signed-off-by: Eric Auger Signed-off-by: Alex Williamson --- diff --git a/hw/vfio/platform.c b/hw/vfio/platform.c index da84abf4fc..0d4bc0aae8 100644 --- a/hw/vfio/platform.c +++ b/hw/vfio/platform.c @@ -643,6 +643,8 @@ static void vfio_platform_realize(DeviceState *dev, Error **errp) vbasedev->dev = dev; vbasedev->ops = &vfio_platform_ops; + qemu_mutex_init(&vdev->intp_mutex); + trace_vfio_platform_realize(vbasedev->sysfsdev ? vbasedev->sysfsdev : vbasedev->name, vdev->compat);