diff --git a/vhost_rs/src/vhost_user/master.rs b/vhost_rs/src/vhost_user/master.rs index 2fdbb5091..a7129a18d 100644 --- a/vhost_rs/src/vhost_user/master.rs +++ b/vhost_rs/src/vhost_user/master.rs @@ -603,7 +603,7 @@ impl MasterInternal { #[inline] fn new_request_header(request: MasterReq, size: u32) -> VhostUserMsgHeader { // TODO: handle NEED_REPLY flag - VhostUserMsgHeader::new(request, 0, size) + VhostUserMsgHeader::new(request, 0x1, size) } }