We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2127a9b commit b344d2aCopy full SHA for b344d2a
src/ioctls/mod.rs
@@ -5,6 +5,8 @@
5
// 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