diff options
author | Dr. David Alan Gilbert | 2019-02-07 19:22:40 +0100 |
---|---|---|
committer | Dr. David Alan Gilbert | 2020-01-23 17:41:37 +0100 |
commit | 0fdc465d7d5aafeae127eba488f247ac6f58df4c (patch) | |
tree | d6a2638683f46d843c41e0247e1ed97b82999ef6 /hw/virtio | |
parent | virtiofsd: Kill threads when queues are stopped (diff) | |
download | qemu-0fdc465d7d5aafeae127eba488f247ac6f58df4c.tar.gz qemu-0fdc465d7d5aafeae127eba488f247ac6f58df4c.tar.xz qemu-0fdc465d7d5aafeae127eba488f247ac6f58df4c.zip |
vhost-user: Print unexpected slave message types
When we receive an unexpected message type on the slave fd, print
the type.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'hw/virtio')
-rw-r--r-- | hw/virtio/vhost-user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c index d27a10fcc6..2e81f5514f 100644 --- a/hw/virtio/vhost-user.c +++ b/hw/virtio/vhost-user.c @@ -1061,7 +1061,7 @@ static void slave_read(void *opaque) fd[0]); break; default: - error_report("Received unexpected msg type."); + error_report("Received unexpected msg type: %d.", hdr.request); ret = -EINVAL; } |