vfio: Rename to vfio-ioctls

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Samuel Ortiz
2019-11-08 16:27:05 +01:00
parent 53ce529875
commit d24aa72d3e
11 changed files with 19 additions and 20 deletions

View File

@@ -10,7 +10,7 @@ byteorder = "1.3.4"
devices = { path = "../devices" }
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch" }
kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" }
vfio = { path = "../vfio" }
vfio-ioctls = { path = "../vfio-ioctls" }
vmm-sys-util = ">=0.3.1"
libc = "0.2.71"
log = "0.4.8"

View File

@@ -20,8 +20,8 @@ use std::os::unix::io::AsRawFd;
use std::ptr::null_mut;
use std::sync::Arc;
use std::{fmt, io, result};
use vfio::{VfioDevice, VfioError};
use vfio_bindings::bindings::vfio::*;
use vfio_ioctls::{VfioDevice, VfioError};
use vm_allocator::SystemAllocator;
use vm_device::interrupt::{
InterruptIndex, InterruptManager, InterruptSourceGroup, MsiIrqGroupConfig,