All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] monitor/hmp-cmds: fix bad indentation in 'info migrate_parameters' cmd output
@ 2020-03-20 13:00 Mao Zhongyi
  2020-03-20 15:27 ` Markus Armbruster
  0 siblings, 1 reply; 7+ messages in thread
From: Mao Zhongyi @ 2020-03-20 13:00 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert, Mao Zhongyi

run:
(qemu) info migrate_parameters
announce-initial: 50 ms
...
announce-max: 550 ms
multifd-compression: none
xbzrle-cache-size: 4194304
max-postcopy-bandwidth: 0
 tls-authz: '(null)'

The last line seems a bit out of place, fix it.

Signed-off-by: Mao Zhongyi <maozhongyi@cmss.chinamobile.com>
---
 monitor/hmp-cmds.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c
index 58724031ea..f8be6bbb16 100644
--- a/monitor/hmp-cmds.c
+++ b/monitor/hmp-cmds.c
@@ -459,7 +459,7 @@ void hmp_info_migrate_parameters(Monitor *mon, const QDict *qdict)
         monitor_printf(mon, "%s: %" PRIu64 "\n",
             MigrationParameter_str(MIGRATION_PARAMETER_MAX_POSTCOPY_BANDWIDTH),
             params->max_postcopy_bandwidth);
-        monitor_printf(mon, " %s: '%s'\n",
+        monitor_printf(mon, "%s: '%s'\n",
             MigrationParameter_str(MIGRATION_PARAMETER_TLS_AUTHZ),
             params->has_tls_authz ? params->tls_authz : "");
     }
-- 
2.17.1





^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-03-21 11:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-20 13:00 [PATCH] monitor/hmp-cmds: fix bad indentation in 'info migrate_parameters' cmd output Mao Zhongyi
2020-03-20 15:27 ` Markus Armbruster
2020-03-20 17:31   ` Dr. David Alan Gilbert
2020-03-20 17:49     ` Daniel P. Berrangé
2020-03-20 18:07       ` Dr. David Alan Gilbert
2020-03-21  7:14         ` Markus Armbruster
2020-03-21 11:23           ` maozy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.