summary refs log tree commit diff
path: root/x86_64
diff options
context:
space:
mode:
Diffstat (limited to 'x86_64')
-rw-r--r--x86_64/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/x86_64/src/lib.rs b/x86_64/src/lib.rs
index 9a16776..1fcaed0 100644
--- a/x86_64/src/lib.rs
+++ b/x86_64/src/lib.rs
@@ -396,11 +396,13 @@ impl arch::LinuxArch for X8664arch {
     /// * `kernel_load_offset` - Offset in bytes from `guest_mem` at which the
     ///                          kernel starts.
     /// * `kvm` - The /dev/kvm object that created vcpu.
+    /// * `vm` - The VM object associated with this VCPU.
     /// * `vcpu` - The VCPU object to configure.
     /// * `cpu_id` - The id of the given `vcpu`.
     /// * `num_cpus` - Number of virtual CPUs the guest will have.
     fn configure_vcpu(guest_mem: &GuestMemory,
                       kvm: &Kvm,
+                      _vm: &Vm,
                       vcpu: &Vcpu,
                       cpu_id: u64,
                       num_cpus: u64)