forked from rust-vmm/kvm
-
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.
ioctls: Don't panic on unsupported exit reason
In case the underlying KVM version is more recent than what is known and supported by the kvm-ioctls crate, and in case KVM reports an unknown reason for a VM exit, we don't want the vCPU run() to panic. A more elegant way of handling such situation is by propagating the exit reason up to the consumer's crate as it might know what to do with it. Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 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": 85.4, | ||
"coverage_score": 85.3, | ||
"exclude_path": "", | ||
"crate_features": "" | ||
} |
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