migration: not necessary to check ops again
During each iteration, se->ops is checked before each loop. So it is not necessary to check it again and simplify the following check a little. Signed-off-by: Wei Yang <richardw.yang@linux.intel.com> Message-Id: <20190327013130.26259-1-richardw.yang@linux.intel.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
772c6212d2
commit
a94cd7b8ab
@ -1157,15 +1157,13 @@ int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy)
|
|||||||
if (!se->ops || !se->ops->save_live_iterate) {
|
if (!se->ops || !se->ops->save_live_iterate) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (se->ops && se->ops->is_active) {
|
if (se->ops->is_active &&
|
||||||
if (!se->ops->is_active(se->opaque)) {
|
!se->ops->is_active(se->opaque)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (se->ops && se->ops->is_active_iterate) {
|
if (se->ops->is_active_iterate &&
|
||||||
if (!se->ops->is_active_iterate(se->opaque)) {
|
!se->ops->is_active_iterate(se->opaque)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* In the postcopy phase, any device that doesn't know how to
|
* In the postcopy phase, any device that doesn't know how to
|
||||||
|
Loading…
Reference in New Issue
Block a user