Displaying 4 results from an estimated 4 matches for "qemuddomainmigratefinish2".
2014 Mar 20
2
Live migration process in src/qemu_driver.ca
.... I
am using libvirt ​with qemu-kvm. I am issuing migration commands using
virsh.
Now, I want to measure the time spent in each phase of live migration,
e.g., pre-copy and stop-copy. I stumbled upon the file qemu_driver.c. It
has functions like
qemudDomainMigratePrepare2
qemudDomainMigratePerform
qemudDomainMigrateFinish2
I want to know whether qemudDomainMigratePerform and
qemudDomainMigrateFinish2 directly map to the pre-copy and stop-copy phase?
or the qemudDomainMigratePerform function performs both of them?
Any pointers or suggestions will be greatly appreciated.
Regards
----------------------
Md. Faizul Bar...
2014 Mar 20
0
Re: Live migration process in src/qemu_driver.ca
...uing migration commands using
> virsh.
>
> Now, I want to measure the time spent in each phase of live migration,
> e.g., pre-copy and stop-copy. I stumbled upon the file qemu_driver.c. It
> has functions like
>
> qemudDomainMigratePrepare2
> qemudDomainMigratePerform
> qemudDomainMigrateFinish2
These functions perform different handshakes between the two libvirt
ends of the migration. However, the entire migration is done by a
single qemu monitor command, and it is that monitor command that further
divides the work into phases such as pre-copy and stop-copy.
>
> I want to know w...
2014 Mar 20
1
Re: Live migration process in src/qemu_driver.ca
...sh.
> >
> > Now, I want to measure the time spent in each phase of live migration,
> > e.g., pre-copy and stop-copy. I stumbled upon the file qemu_driver.c. It
> > has functions like
> >
> > qemudDomainMigratePrepare2
> > qemudDomainMigratePerform
> > qemudDomainMigrateFinish2
>
> These functions perform different handshakes between the two libvirt
> ends of the migration. However, the entire migration is done by a
> single qemu monitor command, and it is that monitor command that further
> divides the work into phases such as pre-copy and stop-copy.
>...
2010 Jul 05
0
Release of libvirt-0.8.2
...'t overwrite virDomainAssignDef errors. (Chris Lalancette)
- Fix race in finding available vnc port (Jim Fehlig)
- qemu driver: fix version check typos (Chris Wright)
- daemon: A few initscript corrections (Cole Robinson)
- qemu: Properly cleanup in security startup error path (Cole Robinson)
- qemudDomainMigrateFinish2: handle a case of virDomainSaveStatus failure (Jim Meyering)
- Fix potential NULL dereference in remoteDomainMigratePrepare2 (Jiri Denemark)
- qemudDomainRestore: handle a case of virDomainSaveStatus failure (Jim Meyering)
- python: don't ignore virInitialize failure in module initialization (J...