summary refs log tree commit diff stats
path: root/hw/vfio/common.c
diff options
context:
space:
mode:
authorAlex Williamson <alex.williamson@redhat.com>2014-12-22 10:37:27 -0700
committerAlex Williamson <alex.williamson@redhat.com>2014-12-22 10:37:27 -0700
commitdcbfc5cefb22e9219f8253dba87de33104ca73fe (patch)
tree72e4da179918dc396976545763c34861b8fd0efb /hw/vfio/common.c
parente2c7d025ada047a3f0225f89ff36626d1bd46e47 (diff)
downloadfocaccia-qemu-dcbfc5cefb22e9219f8253dba87de33104ca73fe.tar.gz
focaccia-qemu-dcbfc5cefb22e9219f8253dba87de33104ca73fe.zip
vfio: Cleanup error_report()s
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 <alex.williamson@redhat.com>
Diffstat (limited to 'hw/vfio/common.c')
-rw-r--r--hw/vfio/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfio/common.c b/hw/vfio/common.c
index 4f15c86b80..cf483fffa9 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;
         }