Skip to content

Commit

Permalink
CP-45016: Clean up the source VM earlier
Browse files Browse the repository at this point in the history
Previously the source VM is cleaned up at the very end of the migration,
after the destination VM is up and running. This has caused problems for
SMAPIv3 SRs as the new VM needs to plug in the new VBD which requires a
datapath activate on the VDI which is currently in use by the old VM
(and the mirroring process). This window needs to be reduced since we
cannot have two datapath activated at the same time.

Signed-off-by: Vincent Liu <[email protected]>
  • Loading branch information
Vincent-lau committed Nov 4, 2024
1 parent 0d53065 commit 1254a96
Showing 1 changed file with 29 additions and 23 deletions.
52 changes: 29 additions & 23 deletions ocaml/xenopsd/lib/xenops_server.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2726,7 +2726,35 @@ and perform_exn ?subtask ?result (op : operation) (t : Xenops_task.task_handle)
) ;
debug "VM.migrate: Synchronisation point 1"
in
let clean_src_vm () =
debug
"VM.migrate: clean up src vm before allowing destination to \
proceed" ;
(* cleanup tmp src VM *)
let atomics =
[
VM_hook_script_stable
( id
, Xenops_hooks.VM_pre_destroy
, Xenops_hooks.reason__suspend
, new_src_id
)
]
@ atomics_of_operation (VM_shutdown (new_src_id, None))
@ [
VM_hook_script_stable
( id
, Xenops_hooks.VM_post_destroy
, Xenops_hooks.reason__suspend
, new_src_id
)
; VM_remove new_src_id
]
in
perform_atomics atomics t
in
let final_handshake () =
clean_src_vm () ;
Handshake.send vm_fd Handshake.Success ;
debug "VM.migrate: Synchronisation point 3" ;
match Handshake.recv vm_fd with
Expand Down Expand Up @@ -2784,29 +2812,7 @@ and perform_exn ?subtask ?result (op : operation) (t : Xenops_task.task_handle)
save ~vgpu_fd:(FD vgpu_fd) ()
) ;
final_handshake ()
) ;
(* cleanup tmp src VM *)
let atomics =
[
VM_hook_script_stable
( id
, Xenops_hooks.VM_pre_destroy
, Xenops_hooks.reason__suspend
, new_src_id
)
]
@ atomics_of_operation (VM_shutdown (new_src_id, None))
@ [
VM_hook_script_stable
( id
, Xenops_hooks.VM_post_destroy
, Xenops_hooks.reason__suspend
, new_src_id
)
; VM_remove new_src_id
]
in
perform_atomics atomics t
)
| VM_receive_memory
{
vmr_id= id
Expand Down

0 comments on commit 1254a96

Please sign in to comment.