We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2127a9b commit e62e2e6Copy full SHA for e62e2e6
coverage_config_x86_64.json
@@ -1,5 +1,5 @@
1
{
2
- "coverage_score": 87.7,
+ "coverage_score": 87.0,
3
"exclude_path": "",
4
"crate_features": ""
5
}
src/ioctls/mod.rs
@@ -5,6 +5,8 @@
// Use of this source code is governed by a BSD-style license that can be
6
// found in the THIRD-PARTY file.
7
8
+//! Safe wrapper for KVM IOCTLs.
9
+
10
use std::os::unix::io::AsRawFd;
11
use std::ptr::null_mut;
12
src/lib.rs
@@ -210,7 +210,7 @@ extern crate vmm_sys_util;
210
#[macro_use]
211
mod kvm_ioctls;
212
mod cap;
213
-mod ioctls;
+pub mod ioctls;
214
215
pub use cap::Cap;
216
pub use ioctls::device::DeviceFd;
0 commit comments