forked from rust-vmm/vhost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vhost_user: Remove support for FS_* requests
Since these non-standard backend request message types are confirmed not to be used anymore, let's just remove them. ``` pub enum BackendReq { ... /// Virtio-fs draft: map file content into the window. FS_MAP = 100, /// Virtio-fs draft: unmap file content from the window. FS_UNMAP = 1001, /// Virtio-fs draft: sync file content. FS_SYNC = 1002, /// Virtio-fs draft: perform a read/write from an fd directly to GPA. FS_IO = 1003, ... } ``` Closes: rust-vmm#213 Signed-off-by: Albert Esteve <[email protected]>
- Loading branch information
1 parent
48081dd
commit af987ba
Showing
4 changed files
with
19 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"coverage_score": 72.12, | ||
"coverage_score": 73.04, | ||
"exclude_path": "vhost/src/vhost_kern/", | ||
"crate_features": "vhost/vhost-user-frontend,vhost/vhost-user-backend,vhost-user-backend/postcopy" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters