diff options
author | Wei Yang <richardw.yang@linux.intel.com> | 2019-03-27 09:31:30 +0800 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2019-05-14 17:33:35 +0100 |
commit | a94cd7b8abda18e1c8ef9a62bf0576d2d294f568 (patch) | |
tree | ea22552ed8c7e0a7955122a1f5954248ab8b7d65 /migration/savevm.c | |
parent | 772c6212d2bcdb6adcb2a0d906745b42903b2ecf (diff) | |
download | qemu-a94cd7b8abda18e1c8ef9a62bf0576d2d294f568.zip qemu-a94cd7b8abda18e1c8ef9a62bf0576d2d294f568.tar.gz qemu-a94cd7b8abda18e1c8ef9a62bf0576d2d294f568.tar.bz2 |
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>
Diffstat (limited to 'migration/savevm.c')
-rw-r--r-- | migration/savevm.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/migration/savevm.c b/migration/savevm.c index 34bcad3..587fec8 100644 --- a/migration/savevm.c +++ b/migration/savevm.c @@ -1157,15 +1157,13 @@ int qemu_savevm_state_iterate(QEMUFile *f, bool postcopy) if (!se->ops || !se->ops->save_live_iterate) { continue; } - if (se->ops && se->ops->is_active) { - if (!se->ops->is_active(se->opaque)) { - continue; - } + if (se->ops->is_active && + !se->ops->is_active(se->opaque)) { + continue; } - if (se->ops && se->ops->is_active_iterate) { - if (!se->ops->is_active_iterate(se->opaque)) { - continue; - } + if (se->ops->is_active_iterate && + !se->ops->is_active_iterate(se->opaque)) { + continue; } /* * In the postcopy phase, any device that doesn't know how to |