Sets the address of the one-page region in the VM's address space.
(&self, address: u64)
| 775 | /// Sets the address of the one-page region in the VM's address space. |
| 776 | /// |
| 777 | fn set_identity_map_address(&self, address: u64) -> vm::Result<()> { |
| 778 | self.fd |
| 779 | .set_identity_map_address(address) |
| 780 | .map_err(|e| vm::HypervisorVmError::SetIdentityMapAddress(e.into())) |
| 781 | } |
| 782 | |
| 783 | #[cfg(target_arch = "x86_64")] |
| 784 | /// |
no outgoing calls
no test coverage detected