diff --git a/crates/vsock/src/vhu_vsock.rs b/crates/vsock/src/vhu_vsock.rs index eedd234..83d6baf 100644 --- a/crates/vsock/src/vhu_vsock.rs +++ b/crates/vsock/src/vhu_vsock.rs @@ -297,7 +297,9 @@ impl VhostUserBackend for VhostUserVsockBackend { TX_QUEUE_EVENT => { thread.process_tx(vring_tx, evt_idx)?; } - EVT_QUEUE_EVENT => {} + EVT_QUEUE_EVENT => { + warn!("Received an unexpected EVT_QUEUE_EVENT"); + } BACKEND_EVENT => { thread.process_backend_evt(evset); if let Err(e) = thread.process_tx(vring_tx, evt_idx) {