From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59206) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dckHu-0003KU-Gm for qemu-devel@nongnu.org; Tue, 01 Aug 2017 23:25:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dckHt-0000fc-PA for qemu-devel@nongnu.org; Tue, 01 Aug 2017 23:25:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60318) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dckHt-0000f2-J9 for qemu-devel@nongnu.org; Tue, 01 Aug 2017 23:25:33 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8A249123E1C for ; Wed, 2 Aug 2017 03:25:32 +0000 (UTC) From: Peter Xu Date: Wed, 2 Aug 2017 11:25:20 +0800 Message-Id: <1501644321-17721-2-git-send-email-peterx@redhat.com> In-Reply-To: <1501644321-17721-1-git-send-email-peterx@redhat.com> References: <1501644321-17721-1-git-send-email-peterx@redhat.com> Subject: [Qemu-devel] [PATCH 1/2] migration: fix comment disorder in RAMState List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Laurent Vivier , Juan Quintela , "Daniel P . Berrange" , peterx@redhat.com, "Dr . David Alan Gilbert" Comments for "migration_dirty_pages" and "bitmap_mutex" are switched. Fix it. Reviewed-by: Dr. David Alan Gilbert Signed-off-by: Peter Xu --- migration/ram.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migration/ram.c b/migration/ram.c index 1b08296..e18b3e2 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -188,9 +188,9 @@ struct RAMState { uint64_t iterations_prev; /* Iterations since start */ uint64_t iterations; - /* protects modification of the bitmap */ - uint64_t migration_dirty_pages; /* number of dirty bits in the bitmap */ + uint64_t migration_dirty_pages; + /* protects modification of the bitmap */ QemuMutex bitmap_mutex; /* The RAMBlock used in the last src_page_requests */ RAMBlock *last_req_rb; -- 2.7.4