aboutsummaryrefslogtreecommitdiff
path: root/hw/virtio/vhost-vdpa.c
diff options
context:
space:
mode:
authorEugenio Pérez <eperezma@redhat.com>2023-05-26 17:37:36 +0200
committerMichael S. Tsirkin <mst@redhat.com>2023-07-10 15:07:50 -0400
commit2b5de4d7dff457d34b57fcf3f985a41ddc0db062 (patch)
treee384dec20b5d0d19f8a97617cb6dc457c64a5e7e /hw/virtio/vhost-vdpa.c
parentfcb237e64f9d026c03d635579c7b288d0008a6e5 (diff)
downloadqemu-2b5de4d7dff457d34b57fcf3f985a41ddc0db062.zip
qemu-2b5de4d7dff457d34b57fcf3f985a41ddc0db062.tar.gz
qemu-2b5de4d7dff457d34b57fcf3f985a41ddc0db062.tar.bz2
vdpa: Remove status in reset tracing
It is always 0 and it is not useful to route call through file descriptor. Reviewed-by: Stefano Garzarella <sgarzare@redhat.com> Acked-by: Jason Wang <jasowang@redhat.com> Signed-off-by: Eugenio Pérez <eperezma@redhat.com> Message-Id: <20230526153736.472443-1-eperezma@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/vhost-vdpa.c')
-rw-r--r--hw/virtio/vhost-vdpa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
index 3c575a9..6246e5b 100644
--- a/hw/virtio/vhost-vdpa.c
+++ b/hw/virtio/vhost-vdpa.c
@@ -859,7 +859,7 @@ static int vhost_vdpa_reset_device(struct vhost_dev *dev)
uint8_t status = 0;
ret = vhost_vdpa_call(dev, VHOST_VDPA_SET_STATUS, &status);
- trace_vhost_vdpa_reset_device(dev, status);
+ trace_vhost_vdpa_reset_device(dev);
v->suspended = false;
return ret;
}