X86 specific call that returns the vcpu's current "xsave struct".
(&self)
| 3460 | /// X86 specific call that returns the vcpu's current "xsave struct". |
| 3461 | /// |
| 3462 | fn get_xsave(&self) -> cpu::Result<XsaveState> { |
| 3463 | Ok(self |
| 3464 | .fd |
| 3465 | .get_xsave() |
| 3466 | .map_err(|e| cpu::HypervisorCpuError::GetXsaveState(e.into()))? |
| 3467 | .into()) |
| 3468 | } |
| 3469 | |
| 3470 | #[cfg(target_arch = "x86_64")] |
| 3471 | /// |