vhost: Prepare v0.12.0 release

This release has the following changes:
  1. Bump vm-memory crate from 0.14.0 to 0.15.0
  2. Add shared objects support
  3. Remove support for FS_* requests
  4. Add support for `VHOST_USER_GPU_SET_SOCKET`
  5. Ignore unknown bits in `VHOST_USER_GET_PROTOCOL_FEATURES` response.

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam 2024-09-12 17:04:03 -07:00 committed by Stefano Garzarella
parent e397bdb7cb
commit 6f4279c825
3 changed files with 14 additions and 7 deletions

View file

@ -17,7 +17,7 @@ gpu-socket = ["vhost/gpu-socket"]
libc = "0.2.39"
log = "0.4.17"
userfaultfd = { version = "0.8.1", optional = true }
vhost = { path = "../vhost", version = "0.11", features = ["vhost-user-backend"] }
vhost = { path = "../vhost", version = "0.12", features = ["vhost-user-backend"] }
virtio-bindings = "0.2.1"
virtio-queue = "0.13.0"
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
@ -25,6 +25,6 @@ vmm-sys-util = "0.12.1"
[dev-dependencies]
nix = { version = "0.29", features = ["fs"] }
vhost = { path = "../vhost", version = "0.11", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
vhost = { path = "../vhost", version = "0.12", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }
tempfile = "3.2.0"