diff options
| author | Satheesh Rajendran <sathnaga@linux.vnet.ibm.com> | 2018-03-27 18:08:00 +0530 |
|---|---|---|
| committer | Eric Blake <eblake@redhat.com> | 2018-03-27 10:17:48 -0500 |
| commit | 0dfddbb537fcb0fbd045e1c890bc0e95f2ea5177 (patch) | |
| tree | 8d307ccada61560a68f3b69ffc9a8dc3f78b4f4b | |
| parent | fa198ad9bdef7303d4e3613c69ea00eece6b3a75 (diff) | |
| download | focaccia-qemu-0dfddbb537fcb0fbd045e1c890bc0e95f2ea5177.tar.gz focaccia-qemu-0dfddbb537fcb0fbd045e1c890bc0e95f2ea5177.zip | |
hmp.c: Revert hmp_info_cpus output format change
Commit 137b5cb6 refactored 'info cpus' output, changing 'thread_id' to 'thread-id'. While HMP is not a stable interface, it is trivial to keep the spelling consistent for test frameworks that have not yet updated to using QMP. This patch just reverts back output format to 'thread_id'. CC: Viktor Mihajlovski <mihajlov@linux.vnet.ibm.com> Signed-off-by: Satheesh Rajendran <sathnaga@linux.vnet.ibm.com> Message-Id: <20180327123800.28851-1-sathnaga@linux.vnet.ibm.com> Reviewed-by: Eric Blake <eblake@redhat.com> Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com> [eblake: improve commit message] Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Eric Blake <eblake@redhat.com>
| -rw-r--r-- | hmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hmp.c b/hmp.c index 679467d85a..a25c7bd9a8 100644 --- a/hmp.c +++ b/hmp.c @@ -381,7 +381,7 @@ void hmp_info_cpus(Monitor *mon, const QDict *qdict) monitor_printf(mon, "%c CPU #%" PRId64 ":", active, cpu->value->cpu_index); - monitor_printf(mon, " thread-id=%" PRId64 "\n", cpu->value->thread_id); + monitor_printf(mon, " thread_id=%" PRId64 "\n", cpu->value->thread_id); } qapi_free_CpuInfoFastList(cpu_list); |