aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2021-11-06 19:43:42 -0400
committerRichard Henderson <richard.henderson@linaro.org>2021-11-06 19:43:42 -0400
commit63ed851de474b1e2458cb9b4ba6e02a88f72c25c (patch)
tree9c9b5c11b173be8fcc80caca7e92a69052cc6f38
parentc39deb218178d1fb814dd2138ceff4b541a03d85 (diff)
parentf78d4ed701454f10079461b981ba2a61a95762ab (diff)
Merge remote-tracking branch 'remotes/juanquintela/tags/migration-20211106-pull-request' into staging
Migration Pull request - fix vhost-user crash when using postcopy (me) - fix incorrect tag for docs (hyman) Please apply, Juan. # gpg: Signature made Sat 06 Nov 2021 07:29:37 PM EDT # gpg: using RSA key 1899FF8EDEBF58CCEE034B82F487EF185872D723 # gpg: Good signature from "Juan Quintela <quintela@redhat.com>" [full] # gpg: aka "Juan Quintela <quintela@trasno.org>" [full] * remotes/juanquintela/tags/migration-20211106-pull-request: docs: fix qemu incorrect tag migration: Check that postcopy fd's are not NULL Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--migration/postcopy-ram.c4
-rw-r--r--qapi/migration.json10
2 files changed, 9 insertions, 5 deletions
diff --git a/migration/postcopy-ram.c b/migration/postcopy-ram.c
index e721f69d0f..d18b5d05b2 100644
--- a/migration/postcopy-ram.c
+++ b/migration/postcopy-ram.c
@@ -1457,6 +1457,10 @@ void postcopy_unregister_shared_ufd(struct PostCopyFD *pcfd)
MigrationIncomingState *mis = migration_incoming_get_current();
GArray *pcrfds = mis->postcopy_remote_fds;
+ if (!pcrfds) {
+ /* migration has already finished and freed the array */
+ return;
+ }
for (i = 0; i < pcrfds->len; i++) {
struct PostCopyFD *cur = &g_array_index(pcrfds, struct PostCopyFD, i);
if (cur->fd == pcfd->fd) {
diff --git a/qapi/migration.json b/qapi/migration.json
index 87146ceea2..f0aefdab64 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -1740,7 +1740,7 @@
#
# @dirty-rate: dirty rate.
#
-# Since: 6.1
+# Since: 6.2
#
##
{ 'struct': 'DirtyRateVcpu',
@@ -1774,7 +1774,7 @@
#
# @dirty-bitmap: calculate dirtyrate by dirty bitmap.
#
-# Since: 6.1
+# Since: 6.2
#
##
{ 'enum': 'DirtyRateMeasureMode',
@@ -1796,13 +1796,13 @@
# @calc-time: time in units of second for sample dirty pages
#
# @sample-pages: page count per GB for sample dirty pages
-# the default value is 512 (since 6.1)
+# the default value is 512 (since 6.2)
#
# @mode: mode containing method of calculate dirtyrate includes
-# 'page-sampling' and 'dirty-ring' (Since 6.1)
+# 'page-sampling' and 'dirty-ring' (Since 6.2)
#
# @vcpu-dirty-rate: dirtyrate for each vcpu if dirty-ring
-# mode specified (Since 6.1)
+# mode specified (Since 6.2)
#
# Since: 5.2
#