From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40895) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eCLUI-0006Nt-Gs for qemu-devel@nongnu.org; Wed, 08 Nov 2017 03:13:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eCLUF-0000jS-Bw for qemu-devel@nongnu.org; Wed, 08 Nov 2017 03:13:30 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57216) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eCLUF-0000jB-5m for qemu-devel@nongnu.org; Wed, 08 Nov 2017 03:13:27 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2B52325C22 for ; Wed, 8 Nov 2017 08:13:26 +0000 (UTC) Date: Wed, 8 Nov 2017 16:13:22 +0800 From: Peter Xu Message-ID: <20171108081322.GC2992@xz-mi> References: <20171030112112.6952-1-quintela@redhat.com> <20171030112112.6952-3-quintela@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20171030112112.6952-3-quintela@redhat.com> Subject: Re: [Qemu-devel] [PATCH 2/6] migration: print features as on off List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela Cc: qemu-devel@nongnu.org, dgilbert@redhat.com, lvivier@redhat.com On Mon, Oct 30, 2017 at 12:21:08PM +0100, Juan Quintela wrote: > Once there, do one thing for line > > Signed-off-by: Juan Quintela Reviewed-by: Peter Xu > --- > migration/migration.c | 13 +++++++++---- > 1 file changed, 9 insertions(+), 4 deletions(-) > > diff --git a/migration/migration.c b/migration/migration.c > index 4de3b551fe..706d2407ec 100644 > --- a/migration/migration.c > +++ b/migration/migration.c > @@ -2375,10 +2375,15 @@ void migration_global_dump(Monitor *mon) > { > MigrationState *ms = migrate_get_current(); > > - monitor_printf(mon, "globals: store-global-state=%d, only_migratable=%d, " > - "send-configuration=%d, send-section-footer=%d\n", > - ms->store_global_state, ms->only_migratable, > - ms->send_configuration, ms->send_section_footer); > + monitor_printf(mon, "globals:\n"); > + monitor_printf(mon, "store-global-state: %s\n", > + ms->store_global_state ? "on" : "off"); > + monitor_printf(mon, "only-migratable: %s\n", > + ms->only_migratable ? "on" : "off"); > + monitor_printf(mon, "send-configuration: %s\n", > + ms->send_configuration ? "on" : "off"); > + monitor_printf(mon, "send-section-footer: %s\n", > + ms->send_section_footer ? "on" : "off"); > } > > #define DEFINE_PROP_MIG_CAP(name, x) \ > -- > 2.13.6 > -- Peter Xu