migration: rename cancel to cleanup in SaveVMHandles

'cleanup' seems more appropriate than 'cancel'.

Signed-off-by: Liang Li <liang.z.li@intel.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>al3
Reviewed-by: Amit Shah <amit.shah@redhat.com>al3
Signed-off-by: Juan Quintela <quintela@redhat.com>al3
This commit is contained in:
Liang Li 2015-11-02 15:37:02 +08:00 committed by Juan Quintela
parent ea7415fac6
commit d1a8548c10
4 changed files with 5 additions and 5 deletions

View file

@ -908,8 +908,8 @@ void qemu_savevm_state_cleanup(void)
trace_savevm_state_cleanup();
QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
if (se->ops && se->ops->cancel) {
se->ops->cancel(se->opaque);
if (se->ops && se->ops->cleanup) {
se->ops->cleanup(se->opaque);
}
}
}