qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 14/14] vfio: Cleanup error_report()s


From: Alex Williamson
Subject: [Qemu-devel] [PULL 14/14] vfio: Cleanup error_report()s
Date: Mon, 22 Dec 2014 13:44:34 -0700
User-agent: StGit/0.17-dirty

With the conversion to tracepoints, a couple previous DPRINTKs are
now quite a bit more visible and are really just informational.
Remove these and add a bit more description to another.

Signed-off-by: Alex Williamson <address@hidden>
---
 hw/vfio/common.c |    2 +-
 hw/vfio/pci.c    |    3 ---
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/hw/vfio/common.c b/hw/vfio/common.c
index 4f15c86..cf483ff 100644
--- a/hw/vfio/common.c
+++ b/hw/vfio/common.c
@@ -566,7 +566,7 @@ static void vfio_kvm_device_add_group(VFIOGroup *group)
         };
 
         if (kvm_vm_ioctl(kvm_state, KVM_CREATE_DEVICE, &cd)) {
-            error_report("KVM_CREATE_DEVICE: %m\n");
+            error_report("Failed to create KVM VFIO device: %m\n");
             return;
         }
 
diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
index e380959..b4e73d1 100644
--- a/hw/vfio/pci.c
+++ b/hw/vfio/pci.c
@@ -2801,8 +2801,6 @@ static int vfio_pci_hot_reset(VFIOPCIDevice *vdev, bool 
single)
             tmp = container_of(vbasedev_iter, VFIOPCIDevice, vbasedev);
             if (vfio_pci_host_match(&host, &tmp->host)) {
                 if (single) {
-                    error_report("vfio: found another in-use device "
-                            "%s\n", vbasedev_iter->name);
                     ret = -EINVAL;
                     goto out_single;
                 }
@@ -2815,7 +2813,6 @@ static int vfio_pci_hot_reset(VFIOPCIDevice *vdev, bool 
single)
     }
 
     if (!single && !multi) {
-        error_report("vfio: No other in-use devices for multi hot reset\n");
         ret = -EINVAL;
         goto out_single;
     }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]