From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53037) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fhx2G-0005es-PF for qemu-devel@nongnu.org; Tue, 24 Jul 2018 09:07:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fhx2F-00045k-PI for qemu-devel@nongnu.org; Tue, 24 Jul 2018 09:07:28 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:59380 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fhx2F-00045P-Ky for qemu-devel@nongnu.org; Tue, 24 Jul 2018 09:07:27 -0400 Date: Tue, 24 Jul 2018 21:07:18 +0800 From: Peter Xu Message-ID: <20180724130718.GF2479@xz-mi> References: <1532434585-14732-1-git-send-email-lidongchen@tencent.com> <1532434585-14732-2-git-send-email-lidongchen@tencent.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1532434585-14732-2-git-send-email-lidongchen@tencent.com> Subject: Re: [Qemu-devel] [PATCH 2/2] migration: fix duplicate initialization for expected_downtime and cleanup_bh List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Lidong Chen Cc: quintela@redhat.com, dgilbert@redhat.com, qemu-devel@nongnu.org, Lidong Chen On Tue, Jul 24, 2018 at 08:16:25PM +0800, Lidong Chen wrote: > migrate_fd_connect duplicate initialize expected_downtime and cleanup_bh. > > Signed-off-by: Lidong Chen This seems correct to me. Reviewed-by: Peter Xu > --- > migration/migration.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/migration/migration.c b/migration/migration.c > index ff05422..b8c4fec 100644 > --- a/migration/migration.c > +++ b/migration/migration.c > @@ -3032,8 +3032,6 @@ void migrate_fd_connect(MigrationState *s, Error *error_in) > } else { > /* This is a fresh new migration */ > rate_limit = s->parameters.max_bandwidth / XFER_LIMIT_RATIO; > - s->expected_downtime = s->parameters.downtime_limit; > - s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s); > > /* Notify before starting migration thread */ > notifier_list_notify(&migration_state_notifiers, s); > -- > 1.8.3.1 > > Regards, -- Peter Xu