From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38576) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1z4K-00073R-O1 for qemu-devel@nongnu.org; Tue, 10 Oct 2017 14:15:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1z4H-0002HB-7G for qemu-devel@nongnu.org; Tue, 10 Oct 2017 14:15:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57100) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e1z4H-0002Ge-1w for qemu-devel@nongnu.org; Tue, 10 Oct 2017 14:15:49 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 27EE2C04AC7E for ; Tue, 10 Oct 2017 18:15:48 +0000 (UTC) From: Juan Quintela Date: Tue, 10 Oct 2017 20:15:33 +0200 Message-Id: <20171010181542.24168-2-quintela@redhat.com> In-Reply-To: <20171010181542.24168-1-quintela@redhat.com> References: <20171010181542.24168-1-quintela@redhat.com> Subject: [Qemu-devel] [PATCH 01/10] migration: Fix migrate_test_apply for multifd parameters List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: dgilbert@redhat.com, lvivier@redhat.com, peterx@redhat.com They were missing when introduced on the tree Signed-off-by: Juan Quintela --- migration/migration.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/migration/migration.c b/migration/migration.c index 98429dc843..fb62a639d8 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -865,6 +865,12 @@ static void migrate_params_test_apply(MigrateSetParameters *params, if (params->has_block_incremental) { dest->block_incremental = params->block_incremental; } + if (params->has_x_multifd_channels) { + dest->x_multifd_channels = params->x_multifd_channels; + } + if (params->has_x_multifd_page_count) { + dest->x_multifd_page_count = params->x_multifd_page_count; + } } static void migrate_params_apply(MigrateSetParameters *params) -- 2.13.6