summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vhost_user/message.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/vhost_user/message.rs b/src/vhost_user/message.rs
index 5d4467e..dde5aa9 100644
--- a/src/vhost_user/message.rs
+++ b/src/vhost_user/message.rs
@@ -353,6 +353,14 @@ bitflags! {
const HOST_NOTIFIER = 0x0000_0800;
/// Support inflight shmfd.
const INFLIGHT_SHMFD = 0x0000_1000;
+ /// Support resetting the device.
+ const RESET_DEVICE = 0x0000_2000;
+ /// Support inband notifications.
+ const INBAND_NOTIFICATIONS = 0x0000_4000;
+ /// Support configuring memory slots.
+ const CONFIGURE_MEM_SLOTS = 0x0000_8000;
+ /// Support reporting status.
+ const STATUS = 0x0001_0000;
}
}