From: Cédric Le Goater Date: Thu, 6 Feb 2025 13:14:30 +0000 (+0100) Subject: vfio/pci: Replace "iommu_device" by "vIOMMU" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cbfbedd6173cf8ff3f374ec6b8e1a17e9fa75872;p=qemu.git vfio/pci: Replace "iommu_device" by "vIOMMU" This is to be consistent with other reported errors related to vIOMMU devices. Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Alex Williamson Link: https://lore.kernel.org/qemu-devel/20250206131438.1505542-3-clg@redhat.com Signed-off-by: Cédric Le Goater --- diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index 9a55e7b773..89d900e9cf 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -3116,7 +3116,7 @@ static void vfio_realize(PCIDevice *pdev, Error **errp) if (!vbasedev->mdev && !pci_device_set_iommu_device(pdev, vbasedev->hiod, errp)) { - error_prepend(errp, "Failed to set iommu_device: "); + error_prepend(errp, "Failed to set vIOMMU: "); goto out_teardown; }