diff --git a/virtio-devices/src/device.rs b/virtio-devices/src/device.rs index 911ab9311..2cf54ba56 100644 --- a/virtio-devices/src/device.rs +++ b/virtio-devices/src/device.rs @@ -206,7 +206,7 @@ pub trait VirtioDevice: Send { /// address translation before they try to read from the guest physical address. /// On the other side, the implementation itself should be provided by the code /// emulating the IOMMU for the guest. -pub trait DmaRemapping: Send + Sync { +pub trait DmaRemapping { /// Provide a way to translate GVA address ranges into GPAs. fn translate_gva(&self, id: u32, addr: u64) -> std::result::Result; /// Provide a way to translate GPA address ranges into GVAs.