* [Qemu-devel] [PULL 0/2] hmp queue @ 2017-06-29 16:30 Dr. David Alan Gilbert (git) 2017-06-29 16:30 ` [Qemu-devel] [PULL 1/2] monitor: Add -a (all) option to info registers Dr. David Alan Gilbert (git) ` (2 more replies) 0 siblings, 3 replies; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2017-06-29 16:30 UTC (permalink / raw) To: qemu-devel From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> The following changes since commit 454d7dc9bc13e46084e0612076e6952c40f4afeb: Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2017-06-29 16:21:45 +0100) are available in the git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20170629 for you to fetch changes up to bd1d5ad9f9a1347d6f4338f294253617c565c89a: Add chardev-send-break monitor command (2017-06-29 17:14:11 +0100) ---------------------------------------------------------------- HMP pull 2017-06-29 ---------------------------------------------------------------- Stefan Fritsch (1): Add chardev-send-break monitor command Suraj Jitindar Singh (1): monitor: Add -a (all) option to info registers chardev/char.c | 12 ++++++++++++ hmp-commands-info.hx | 6 +++--- hmp-commands.hx | 16 ++++++++++++++++ hmp.c | 8 ++++++++ hmp.h | 1 + monitor.c | 21 ++++++++++++++++----- qapi-schema.json | 20 ++++++++++++++++++++ tests/test-char.c | 12 ++++++++++-- tests/test-hmp.c | 1 + 9 files changed, 87 insertions(+), 10 deletions(-) ^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 1/2] monitor: Add -a (all) option to info registers 2017-06-29 16:30 [Qemu-devel] [PULL 0/2] hmp queue Dr. David Alan Gilbert (git) @ 2017-06-29 16:30 ` Dr. David Alan Gilbert (git) 2017-06-29 16:30 ` [Qemu-devel] [PULL 2/2] Add chardev-send-break monitor command Dr. David Alan Gilbert (git) 2017-06-30 10:58 ` [Qemu-devel] [PULL 0/2] hmp queue Peter Maydell 2 siblings, 0 replies; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2017-06-29 16:30 UTC (permalink / raw) To: qemu-devel From: Suraj Jitindar Singh <sjitindarsingh@gmail.com> The info registers command in the qemu monitor is used to dump register values. Currently this command uses the monitor cpu (which can be set by the user) as the cpu for whose registers will be dumped. Sometimes it is useful to see the registers for all cpus and currently this requires setting the monitor cpu and the re-running the command for each cpu in the system. I would be nice if there was an easier way to do this. Add the "-a" option to the info registers command to dump the register values for all cpus. Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com> Message-Id: <20170608054116.17203-1-sjitindarsingh@gmail.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> --- hmp-commands-info.hx | 6 +++--- monitor.c | 21 ++++++++++++++++----- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx index ae169011b1..ba98e581ab 100644 --- a/hmp-commands-info.hx +++ b/hmp-commands-info.hx @@ -100,9 +100,9 @@ ETEXI { .name = "registers", - .args_type = "", - .params = "", - .help = "show the cpu registers", + .args_type = "cpustate_all:-a", + .params = "[-a]", + .help = "show the cpu registers (-a: all - show register info for all cpus)", .cmd = hmp_info_registers, }, diff --git a/monitor.c b/monitor.c index 3c369f4dd5..4031876411 100644 --- a/monitor.c +++ b/monitor.c @@ -1078,13 +1078,24 @@ int monitor_get_cpu_index(void) static void hmp_info_registers(Monitor *mon, const QDict *qdict) { - CPUState *cs = mon_get_cpu(); + bool all_cpus = qdict_get_try_bool(qdict, "cpustate_all", false); + CPUState *cs; - if (!cs) { - monitor_printf(mon, "No CPU available\n"); - return; + if (all_cpus) { + CPU_FOREACH(cs) { + monitor_printf(mon, "\nCPU#%d\n", cs->cpu_index); + cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU); + } + } else { + cs = mon_get_cpu(); + + if (!cs) { + monitor_printf(mon, "No CPU available\n"); + return; + } + + cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU); } - cpu_dump_state(cs, (FILE *)mon, monitor_fprintf, CPU_DUMP_FPU); } static void hmp_info_jit(Monitor *mon, const QDict *qdict) -- 2.13.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 2/2] Add chardev-send-break monitor command 2017-06-29 16:30 [Qemu-devel] [PULL 0/2] hmp queue Dr. David Alan Gilbert (git) 2017-06-29 16:30 ` [Qemu-devel] [PULL 1/2] monitor: Add -a (all) option to info registers Dr. David Alan Gilbert (git) @ 2017-06-29 16:30 ` Dr. David Alan Gilbert (git) 2017-06-30 10:58 ` [Qemu-devel] [PULL 0/2] hmp queue Peter Maydell 2 siblings, 0 replies; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2017-06-29 16:30 UTC (permalink / raw) To: qemu-devel From: Stefan Fritsch <sf@sfritsch.de> Sending a break on a serial console can be useful for debugging the guest. But not all chardev backends support sending breaks (only telnet and mux do). The chardev-send-break command allows to send a break even if using other backends. Signed-off-by: Stefan Fritsch <sf@sfritsch.de> Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-Id: <20170611074817.13621-1-sf@sfritsch.de> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Use 'send a break' in all 3 pieces of text as suggested by eblake --- chardev/char.c | 12 ++++++++++++ hmp-commands.hx | 16 ++++++++++++++++ hmp.c | 8 ++++++++ hmp.h | 1 + qapi-schema.json | 20 ++++++++++++++++++++ tests/test-char.c | 12 ++++++++++-- tests/test-hmp.c | 1 + 7 files changed, 68 insertions(+), 2 deletions(-) diff --git a/chardev/char.c b/chardev/char.c index bcfc065d16..2b679a2295 100644 --- a/chardev/char.c +++ b/chardev/char.c @@ -951,6 +951,18 @@ void qmp_chardev_remove(const char *id, Error **errp) object_unparent(OBJECT(chr)); } +void qmp_chardev_send_break(const char *id, Error **errp) +{ + Chardev *chr; + + chr = qemu_chr_find(id); + if (chr == NULL) { + error_setg(errp, "Chardev '%s' not found", id); + return; + } + qemu_chr_be_event(chr, CHR_EVENT_BREAK); +} + void qemu_chr_cleanup(void) { object_unparent(get_chardevs_root()); diff --git a/hmp-commands.hx b/hmp-commands.hx index e763606fe5..275ccdfbc7 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1745,6 +1745,22 @@ Removes the chardev @var{id}. ETEXI { + .name = "chardev-send-break", + .args_type = "id:s", + .params = "id", + .help = "send a break on chardev", + .cmd = hmp_chardev_send_break, + .command_completion = chardev_remove_completion, + }, + +STEXI +@item chardev-send-break id +@findex chardev-send-break +Send a break on the chardev @var{id}. + +ETEXI + + { .name = "qemu-io", .args_type = "device:B,command:s", .params = "[device] \"[command]\"", diff --git a/hmp.c b/hmp.c index 4c41cac625..dee40284c1 100644 --- a/hmp.c +++ b/hmp.c @@ -2236,6 +2236,14 @@ void hmp_chardev_remove(Monitor *mon, const QDict *qdict) hmp_handle_error(mon, &local_err); } +void hmp_chardev_send_break(Monitor *mon, const QDict *qdict) +{ + Error *local_err = NULL; + + qmp_chardev_send_break(qdict_get_str(qdict, "id"), &local_err); + hmp_handle_error(mon, &local_err); +} + void hmp_qemu_io(Monitor *mon, const QDict *qdict) { BlockBackend *blk; diff --git a/hmp.h b/hmp.h index d8b94ce9dc..214b2617e7 100644 --- a/hmp.h +++ b/hmp.h @@ -103,6 +103,7 @@ void hmp_nbd_server_add(Monitor *mon, const QDict *qdict); void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict); void hmp_chardev_add(Monitor *mon, const QDict *qdict); void hmp_chardev_remove(Monitor *mon, const QDict *qdict); +void hmp_chardev_send_break(Monitor *mon, const QDict *qdict); void hmp_qemu_io(Monitor *mon, const QDict *qdict); void hmp_cpu_add(Monitor *mon, const QDict *qdict); void hmp_object_add(Monitor *mon, const QDict *qdict); diff --git a/qapi-schema.json b/qapi-schema.json index 9e34cf71f3..37c4b95aad 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -5117,6 +5117,26 @@ { 'command': 'chardev-remove', 'data': {'id': 'str'} } ## +# @chardev-send-break: +# +# Send a break to a character device +# +# @id: the chardev's ID, must exist +# +# Returns: Nothing on success +# +# Since: 2.10 +# +# Example: +# +# -> { "execute": "chardev-send-break", "arguments": { "id" : "foo" } } +# <- { "return": {} } +# +## +{ 'command': 'chardev-send-break', 'data': {'id': 'str'} } + + +## # @TpmModel: # # An enumeration of TPM models diff --git a/tests/test-char.c b/tests/test-char.c index 9e361c8d09..87c724c5c2 100644 --- a/tests/test-char.c +++ b/tests/test-char.c @@ -53,7 +53,9 @@ static void fe_event(void *opaque, int event) FeHandler *h = opaque; h->last_event = event; - quit = true; + if (event != CHR_EVENT_BREAK) { + quit = true; + } } #ifdef CONFIG_HAS_GLIB_SUBPROCESS_TESTS @@ -517,7 +519,7 @@ static void char_file_test(void) file.in = fifo; file.has_in = true; - chr = qemu_chardev_new(NULL, TYPE_CHARDEV_FILE, &backend, + chr = qemu_chardev_new("label-file", TYPE_CHARDEV_FILE, &backend, &error_abort); qemu_chr_fe_init(&be, chr, &error_abort); @@ -527,6 +529,12 @@ static void char_file_test(void) fe_event, &fe, NULL, true); + g_assert_cmpint(fe.last_event, !=, CHR_EVENT_BREAK); + qmp_chardev_send_break("label-foo", NULL); + g_assert_cmpint(fe.last_event, !=, CHR_EVENT_BREAK); + qmp_chardev_send_break("label-file", NULL); + g_assert_cmpint(fe.last_event, ==, CHR_EVENT_BREAK); + main_loop(); close(fd); diff --git a/tests/test-hmp.c b/tests/test-hmp.c index 99e35ec15a..6dfa0c36e2 100644 --- a/tests/test-hmp.c +++ b/tests/test-hmp.c @@ -22,6 +22,7 @@ static int verbose; static const char *hmp_cmds[] = { "boot_set ndc", "chardev-add null,id=testchardev1", + "chardev-send-break testchardev2", "chardev-remove testchardev1", "commit all", "cpu-add 1", -- 2.13.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] hmp queue 2017-06-29 16:30 [Qemu-devel] [PULL 0/2] hmp queue Dr. David Alan Gilbert (git) 2017-06-29 16:30 ` [Qemu-devel] [PULL 1/2] monitor: Add -a (all) option to info registers Dr. David Alan Gilbert (git) 2017-06-29 16:30 ` [Qemu-devel] [PULL 2/2] Add chardev-send-break monitor command Dr. David Alan Gilbert (git) @ 2017-06-30 10:58 ` Peter Maydell 2 siblings, 0 replies; 17+ messages in thread From: Peter Maydell @ 2017-06-30 10:58 UTC (permalink / raw) To: Dr. David Alan Gilbert (git); +Cc: QEMU Developers On 29 June 2017 at 17:30, Dr. David Alan Gilbert (git) <dgilbert@redhat.com> wrote: > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > The following changes since commit 454d7dc9bc13e46084e0612076e6952c40f4afeb: > > Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2017-06-29 16:21:45 +0100) > > are available in the git repository at: > > git://github.com/dagrh/qemu.git tags/pull-hmp-20170629 > > for you to fetch changes up to bd1d5ad9f9a1347d6f4338f294253617c565c89a: > > Add chardev-send-break monitor command (2017-06-29 17:14:11 +0100) > > ---------------------------------------------------------------- > HMP pull 2017-06-29 > > ---------------------------------------------------------------- > Stefan Fritsch (1): > Add chardev-send-break monitor command > > Suraj Jitindar Singh (1): > monitor: Add -a (all) option to info registers > > chardev/char.c | 12 ++++++++++++ > hmp-commands-info.hx | 6 +++--- > hmp-commands.hx | 16 ++++++++++++++++ > hmp.c | 8 ++++++++ > hmp.h | 1 + > monitor.c | 21 ++++++++++++++++----- > qapi-schema.json | 20 ++++++++++++++++++++ > tests/test-char.c | 12 ++++++++++-- > tests/test-hmp.c | 1 + > 9 files changed, 87 insertions(+), 10 deletions(-) > Applied, thanks. -- PMM ^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 0/2] hmp queue @ 2017-10-30 20:23 Dr. David Alan Gilbert (git) 2017-10-31 13:11 ` Peter Maydell 0 siblings, 1 reply; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2017-10-30 20:23 UTC (permalink / raw) To: qemu-devel, groug, lu.zhipeng From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> The following changes since commit abf6e752e55b2f5afb48303429dea2db7c3a62de: Merge remote-tracking branch 'remotes/borntraeger/tags/s390x-20171030' into staging (2017-10-30 13:02:45 +0000) are available in the Git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20171030 for you to fetch changes up to 751f8cfe2a556b3ef49f6af2860e2d1d2a1ec66a: monitor: fix dangling CPU pointer (2017-10-30 18:46:32 +0000) ---------------------------------------------------------------- hmp pull 2017-10-30 ---------------------------------------------------------------- Greg Kurz (1): monitor: fix dangling CPU pointer ZhiPeng Lu (1): hmp: Replace error_report_err hmp.c | 26 ++++++++------------------ monitor.c | 23 ++++++++++++++++++----- 2 files changed, 26 insertions(+), 23 deletions(-) ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] hmp queue 2017-10-30 20:23 Dr. David Alan Gilbert (git) @ 2017-10-31 13:11 ` Peter Maydell 0 siblings, 0 replies; 17+ messages in thread From: Peter Maydell @ 2017-10-31 13:11 UTC (permalink / raw) To: Dr. David Alan Gilbert (git); +Cc: QEMU Developers, Greg Kurz, lu.zhipeng On 30 October 2017 at 20:23, Dr. David Alan Gilbert (git) <dgilbert@redhat.com> wrote: > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > The following changes since commit abf6e752e55b2f5afb48303429dea2db7c3a62de: > > Merge remote-tracking branch 'remotes/borntraeger/tags/s390x-20171030' into staging (2017-10-30 13:02:45 +0000) > > are available in the Git repository at: > > git://github.com/dagrh/qemu.git tags/pull-hmp-20171030 > > for you to fetch changes up to 751f8cfe2a556b3ef49f6af2860e2d1d2a1ec66a: > > monitor: fix dangling CPU pointer (2017-10-30 18:46:32 +0000) > > ---------------------------------------------------------------- > hmp pull 2017-10-30 > applied, thanks -- PMM ^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 0/2] hmp queue @ 2017-12-14 12:48 Dr. David Alan Gilbert (git) 2017-12-14 16:39 ` Peter Maydell 2017-12-14 16:56 ` no-reply 0 siblings, 2 replies; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2017-12-14 12:48 UTC (permalink / raw) To: qemu-devel From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> The following changes since commit 0a0dc59d27527b78a195c2d838d28b7b49e5a639: Update version for v2.11.0 release (2017-12-13 14:31:09 +0000) are available in the Git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20171214 for you to fetch changes up to 0eaf3b824745cacebfc321aef6787528d33d58fe: tests: test-hmp: print command execution result (2017-12-14 11:09:42 +0000) ---------------------------------------------------------------- HMP pull 2017-12-14 ---------------------------------------------------------------- Thomas Huth (1): hmp-commands: Remove the deprecated usb_add and usb_del Vadim Galitsyn (1): tests: test-hmp: print command execution result hmp-commands.hx | 33 --------------------------------- hw/usb/bus.c | 22 ---------------------- include/hw/usb.h | 1 - include/sysemu/sysemu.h | 2 -- qemu-doc.texi | 8 -------- tests/test-hmp.c | 7 +++++-- vl.c | 44 -------------------------------------------- 7 files changed, 5 insertions(+), 112 deletions(-) ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] hmp queue 2017-12-14 12:48 Dr. David Alan Gilbert (git) @ 2017-12-14 16:39 ` Peter Maydell 2017-12-14 16:56 ` no-reply 1 sibling, 0 replies; 17+ messages in thread From: Peter Maydell @ 2017-12-14 16:39 UTC (permalink / raw) To: Dr. David Alan Gilbert (git); +Cc: QEMU Developers On 14 December 2017 at 12:48, Dr. David Alan Gilbert (git) <dgilbert@redhat.com> wrote: > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > The following changes since commit 0a0dc59d27527b78a195c2d838d28b7b49e5a639: > > Update version for v2.11.0 release (2017-12-13 14:31:09 +0000) > > are available in the Git repository at: > > git://github.com/dagrh/qemu.git tags/pull-hmp-20171214 > > for you to fetch changes up to 0eaf3b824745cacebfc321aef6787528d33d58fe: > > tests: test-hmp: print command execution result (2017-12-14 11:09:42 +0000) > > ---------------------------------------------------------------- > HMP pull 2017-12-14 > > ---------------------------------------------------------------- > Thomas Huth (1): > hmp-commands: Remove the deprecated usb_add and usb_del > > Vadim Galitsyn (1): > tests: test-hmp: print command execution result > Applied, thanks. -- PMM ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] hmp queue 2017-12-14 12:48 Dr. David Alan Gilbert (git) 2017-12-14 16:39 ` Peter Maydell @ 2017-12-14 16:56 ` no-reply 1 sibling, 0 replies; 17+ messages in thread From: no-reply @ 2017-12-14 16:56 UTC (permalink / raw) To: dgilbert; +Cc: famz, qemu-devel Hi, This series failed build test on ppc host. Please find the details below. Message-id: 20171214124817.2567-1-dgilbert@redhat.com Subject: [Qemu-devel] [PULL 0/2] hmp queue Type: series === TEST SCRIPT BEGIN === #!/bin/bash # Testing script will be invoked under the git checkout with # HEAD pointing to a commit that has the patches applied on top of "base" # branch set -e echo "=== ENV ===" env echo "=== PACKAGES ===" rpm -qa echo "=== TEST BEGIN ===" INSTALL=$PWD/install BUILD=$PWD/build mkdir -p $BUILD $INSTALL SRC=$PWD cd $BUILD $SRC/configure --prefix=$INSTALL make -j100 # XXX: we need reliable clean up # make check -j100 V=1 make install === TEST SCRIPT END === Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384 From https://github.com/patchew-project/qemu * [new tag] patchew/1513269392-23224-1-git-send-email-jianjay.zhou@huawei.com -> patchew/1513269392-23224-1-git-send-email-jianjay.zhou@huawei.com - [tag update] patchew/20171214124817.2567-1-dgilbert@redhat.com -> patchew/20171214124817.2567-1-dgilbert@redhat.com Submodule 'dtc' (git://git.qemu-project.org/dtc.git) registered for path 'dtc' Submodule 'pixman' (git://anongit.freedesktop.org/pixman) registered for path 'pixman' Submodule 'roms/SLOF' (git://git.qemu-project.org/SLOF.git) registered for path 'roms/SLOF' Submodule 'roms/ipxe' (git://git.qemu-project.org/ipxe.git) registered for path 'roms/ipxe' Submodule 'roms/openbios' (git://git.qemu-project.org/openbios.git) registered for path 'roms/openbios' Submodule 'roms/openhackware' (git://git.qemu-project.org/openhackware.git) registered for path 'roms/openhackware' Submodule 'roms/qemu-palcode' (git://github.com/rth7680/qemu-palcode.git) registered for path 'roms/qemu-palcode' Submodule 'roms/seabios' (git://git.qemu-project.org/seabios.git/) registered for path 'roms/seabios' Submodule 'roms/sgabios' (git://git.qemu-project.org/sgabios.git) registered for path 'roms/sgabios' Submodule 'roms/u-boot' (git://git.qemu-project.org/u-boot.git) registered for path 'roms/u-boot' Submodule 'roms/vgabios' (git://git.qemu-project.org/vgabios.git/) registered for path 'roms/vgabios' Cloning into 'dtc'... Submodule path 'dtc': checked out '65cc4d2748a2c2e6f27f1cf39e07a5dbabd80ebf' Cloning into 'pixman'... Submodule path 'pixman': checked out '87eea99e443b389c978cf37efc52788bf03a0ee0' Cloning into 'roms/SLOF'... Submodule path 'roms/SLOF': checked out 'e3d05727a074619fc12d0a67f05cf2c42c875cce' Cloning into 'roms/ipxe'... Submodule path 'roms/ipxe': checked out '04186319181298083ef28695a8309028b26fe83c' Cloning into 'roms/openbios'... Submodule path 'roms/openbios': checked out 'e79bca64838c96ec44fd7acd508879c5284233dd' Cloning into 'roms/openhackware'... Submodule path 'roms/openhackware': checked out 'c559da7c8eec5e45ef1f67978827af6f0b9546f5' Cloning into 'roms/qemu-palcode'... Submodule path 'roms/qemu-palcode': checked out 'c87a92639b28ac42bc8f6c67443543b405dc479b' Cloning into 'roms/seabios'... Submodule path 'roms/seabios': checked out 'e2fc41e24ee0ada60fc511d60b15a41b294538be' Cloning into 'roms/sgabios'... Submodule path 'roms/sgabios': checked out '23d474943dcd55d0550a3d20b3d30e9040a4f15b' Cloning into 'roms/u-boot'... Submodule path 'roms/u-boot': checked out '2072e7262965bb48d7fffb1e283101e6ed8b21a8' Cloning into 'roms/vgabios'... Submodule path 'roms/vgabios': checked out '19ea12c230ded95928ecaef0db47a82231c2e485' warning: unable to rmdir pixman: Directory not empty Switched to a new branch 'test' M dtc M roms/SLOF M roms/ipxe M roms/openbios M roms/qemu-palcode M roms/seabios M roms/sgabios M roms/u-boot fatal: Not a valid branch point: '0ef0583d5adceb9138bdb47494dabd1549ac5b6d'. Traceback (most recent call last): File "/home/patchew/patchew/patchew-cli", line 508, in test_one cwd=clone, stdout=logf, stderr=logf) File "/usr/lib64/python3.4/subprocess.py", line 558, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command '['git', 'branch', 'base', '0ef0583d5adceb9138bdb47494dabd1549ac5b6d']' returned non-zero exit status 128 --- Email generated automatically by Patchew [http://patchew.org/]. Please send your feedback to patchew-devel@freelists.org ^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 0/2] hmp queue @ 2018-02-16 17:46 Dr. David Alan Gilbert (git) 2018-02-19 9:46 ` Peter Maydell 0 siblings, 1 reply; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2018-02-16 17:46 UTC (permalink / raw) To: qemu-devel, thuth, t.pagef.lt From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> The following changes since commit 5e8d6a12d643a38b82a0a713a77d1192117dbdca: Merge remote-tracking branch 'remotes/kraxel/tags/ui-20180216-pull-request' into staging (2018-02-16 15:55:45 +0000) are available in the Git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20180216 for you to fetch changes up to bf67f1c0b16c0de43b8a10cb53808dd62b0cdc04: monitor.c: Fix infinite loop in monitor's auto-complete (2018-02-16 17:36:16 +0000) ---------------------------------------------------------------- HMP pull 2018-02-16 ---------------------------------------------------------------- Dr. David Alan Gilbert (1): monitor.c: Fix infinite loop in monitor's auto-complete Thomas Huth (1): monitor: Remove legacy "-mon default=on" parameter monitor.c | 9 ++++----- qemu-doc.texi | 9 --------- vl.c | 4 ---- 3 files changed, 4 insertions(+), 18 deletions(-) ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] hmp queue 2018-02-16 17:46 Dr. David Alan Gilbert (git) @ 2018-02-19 9:46 ` Peter Maydell 0 siblings, 0 replies; 17+ messages in thread From: Peter Maydell @ 2018-02-19 9:46 UTC (permalink / raw) To: Dr. David Alan Gilbert (git); +Cc: QEMU Developers, Thomas Huth, t.pagef.lt On 16 February 2018 at 17:46, Dr. David Alan Gilbert (git) <dgilbert@redhat.com> wrote: > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > The following changes since commit 5e8d6a12d643a38b82a0a713a77d1192117dbdca: > > Merge remote-tracking branch 'remotes/kraxel/tags/ui-20180216-pull-request' into staging (2018-02-16 15:55:45 +0000) > > are available in the Git repository at: > > git://github.com/dagrh/qemu.git tags/pull-hmp-20180216 > > for you to fetch changes up to bf67f1c0b16c0de43b8a10cb53808dd62b0cdc04: > > monitor.c: Fix infinite loop in monitor's auto-complete (2018-02-16 17:36:16 +0000) > > ---------------------------------------------------------------- > HMP pull 2018-02-16 > > ---------------------------------------------------------------- > Dr. David Alan Gilbert (1): > monitor.c: Fix infinite loop in monitor's auto-complete > > Thomas Huth (1): > monitor: Remove legacy "-mon default=on" parameter Applied, thanks. -- PMM ^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 0/2] hmp queue @ 2018-03-20 12:41 Dr. David Alan Gilbert (git) 2018-03-20 19:02 ` Peter Maydell 0 siblings, 1 reply; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2018-03-20 12:41 UTC (permalink / raw) To: qemu-devel; +Cc: marcandre.lureau, jixiang_zhang From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> The following changes since commit 4bdc24fa018901892bb8a5bd1808ebd605f4c64d: Merge remote-tracking branch 'remotes/ericb/tags/pull-qapi-2018-03-12-v4' into staging (2018-03-20 09:51:49 +0000) are available in the Git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20180320 for you to fetch changes up to 95372184b7acdfd82ee748b6f0c6df1d839982ba: hmp: free sev info (2018-03-20 12:32:06 +0000) ---------------------------------------------------------------- HMP fixes for 2.12 ---------------------------------------------------------------- Marc-André Lureau (1): hmp: free sev info zhangjixiang (1): HMP: Initialize err before using hmp.c | 2 +- target/i386/monitor.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] hmp queue 2018-03-20 12:41 Dr. David Alan Gilbert (git) @ 2018-03-20 19:02 ` Peter Maydell 0 siblings, 0 replies; 17+ messages in thread From: Peter Maydell @ 2018-03-20 19:02 UTC (permalink / raw) To: Dr. David Alan Gilbert (git) Cc: QEMU Developers, Marc-André Lureau, jixiang_zhang On 20 March 2018 at 12:41, Dr. David Alan Gilbert (git) <dgilbert@redhat.com> wrote: > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > The following changes since commit 4bdc24fa018901892bb8a5bd1808ebd605f4c64d: > > Merge remote-tracking branch 'remotes/ericb/tags/pull-qapi-2018-03-12-v4' into staging (2018-03-20 09:51:49 +0000) > > are available in the Git repository at: > > git://github.com/dagrh/qemu.git tags/pull-hmp-20180320 > > for you to fetch changes up to 95372184b7acdfd82ee748b6f0c6df1d839982ba: > > hmp: free sev info (2018-03-20 12:32:06 +0000) > > ---------------------------------------------------------------- > HMP fixes for 2.12 > > ---------------------------------------------------------------- > Marc-André Lureau (1): > hmp: free sev info > > zhangjixiang (1): > HMP: Initialize err before using > Applied, thanks. -- PMM ^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 0/2] hmp queue @ 2019-05-01 10:59 Dr. David Alan Gilbert (git) 2019-05-01 10:59 ` Dr. David Alan Gilbert (git) 2019-05-02 11:04 ` Peter Maydell 0 siblings, 2 replies; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2019-05-01 10:59 UTC (permalink / raw) To: qemu-devel, crobinso From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> The following changes since commit f75d15231e56cb0f2bafe19faf1229c459a60731: Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2019-04-30 17:06:57 +0100) are available in the Git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20190501 for you to fetch changes up to 574d96933ceff60b2d13fe97602572fc7e95f7c6: hmp: gva2gpa debug command (2019-05-01 10:46:59 +0100) ---------------------------------------------------------------- HMP pull New gva2gpa command delvm now uses hmp_handle_error so gets Error: prefix in messages ---------------------------------------------------------------- Cole Robinson (1): hmp: delvm: use hmp_handle_error Dr. David Alan Gilbert (1): hmp: gva2gpa debug command hmp-commands.hx | 15 +++++++++++++++ hmp.c | 7 ++++--- monitor.c | 22 ++++++++++++++++++++++ tests/test-hmp.c | 1 + 4 files changed, 42 insertions(+), 3 deletions(-) ^ permalink raw reply [flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 0/2] hmp queue 2019-05-01 10:59 Dr. David Alan Gilbert (git) @ 2019-05-01 10:59 ` Dr. David Alan Gilbert (git) 2019-05-02 11:04 ` Peter Maydell 1 sibling, 0 replies; 17+ messages in thread From: Dr. David Alan Gilbert (git) @ 2019-05-01 10:59 UTC (permalink / raw) To: qemu-devel, crobinso From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> The following changes since commit f75d15231e56cb0f2bafe19faf1229c459a60731: Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2019-04-30 17:06:57 +0100) are available in the Git repository at: git://github.com/dagrh/qemu.git tags/pull-hmp-20190501 for you to fetch changes up to 574d96933ceff60b2d13fe97602572fc7e95f7c6: hmp: gva2gpa debug command (2019-05-01 10:46:59 +0100) ---------------------------------------------------------------- HMP pull New gva2gpa command delvm now uses hmp_handle_error so gets Error: prefix in messages ---------------------------------------------------------------- Cole Robinson (1): hmp: delvm: use hmp_handle_error Dr. David Alan Gilbert (1): hmp: gva2gpa debug command hmp-commands.hx | 15 +++++++++++++++ hmp.c | 7 ++++--- monitor.c | 22 ++++++++++++++++++++++ tests/test-hmp.c | 1 + 4 files changed, 42 insertions(+), 3 deletions(-) ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] hmp queue 2019-05-01 10:59 Dr. David Alan Gilbert (git) 2019-05-01 10:59 ` Dr. David Alan Gilbert (git) @ 2019-05-02 11:04 ` Peter Maydell 2019-05-02 11:04 ` Peter Maydell 1 sibling, 1 reply; 17+ messages in thread From: Peter Maydell @ 2019-05-02 11:04 UTC (permalink / raw) To: Dr. David Alan Gilbert (git); +Cc: QEMU Developers, Cole Robinson On Wed, 1 May 2019 at 12:00, Dr. David Alan Gilbert (git) <dgilbert@redhat.com> wrote: > > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > The following changes since commit f75d15231e56cb0f2bafe19faf1229c459a60731: > > Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2019-04-30 17:06:57 +0100) > > are available in the Git repository at: > > git://github.com/dagrh/qemu.git tags/pull-hmp-20190501 > > for you to fetch changes up to 574d96933ceff60b2d13fe97602572fc7e95f7c6: > > hmp: gva2gpa debug command (2019-05-01 10:46:59 +0100) > > ---------------------------------------------------------------- > HMP pull > > New gva2gpa command > delvm now uses hmp_handle_error so gets Error: prefix in messages > Applied, thanks. Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1 for any user-visible changes. -- PMM ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] hmp queue 2019-05-02 11:04 ` Peter Maydell @ 2019-05-02 11:04 ` Peter Maydell 0 siblings, 0 replies; 17+ messages in thread From: Peter Maydell @ 2019-05-02 11:04 UTC (permalink / raw) To: Dr. David Alan Gilbert (git); +Cc: QEMU Developers, Cole Robinson On Wed, 1 May 2019 at 12:00, Dr. David Alan Gilbert (git) <dgilbert@redhat.com> wrote: > > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > The following changes since commit f75d15231e56cb0f2bafe19faf1229c459a60731: > > Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2019-04-30 17:06:57 +0100) > > are available in the Git repository at: > > git://github.com/dagrh/qemu.git tags/pull-hmp-20190501 > > for you to fetch changes up to 574d96933ceff60b2d13fe97602572fc7e95f7c6: > > hmp: gva2gpa debug command (2019-05-01 10:46:59 +0100) > > ---------------------------------------------------------------- > HMP pull > > New gva2gpa command > delvm now uses hmp_handle_error so gets Error: prefix in messages > Applied, thanks. Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1 for any user-visible changes. -- PMM ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2019-05-02 11:06 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-06-29 16:30 [Qemu-devel] [PULL 0/2] hmp queue Dr. David Alan Gilbert (git) 2017-06-29 16:30 ` [Qemu-devel] [PULL 1/2] monitor: Add -a (all) option to info registers Dr. David Alan Gilbert (git) 2017-06-29 16:30 ` [Qemu-devel] [PULL 2/2] Add chardev-send-break monitor command Dr. David Alan Gilbert (git) 2017-06-30 10:58 ` [Qemu-devel] [PULL 0/2] hmp queue Peter Maydell -- strict thread matches above, loose matches on Subject: below -- 2017-10-30 20:23 Dr. David Alan Gilbert (git) 2017-10-31 13:11 ` Peter Maydell 2017-12-14 12:48 Dr. David Alan Gilbert (git) 2017-12-14 16:39 ` Peter Maydell 2017-12-14 16:56 ` no-reply 2018-02-16 17:46 Dr. David Alan Gilbert (git) 2018-02-19 9:46 ` Peter Maydell 2018-03-20 12:41 Dr. David Alan Gilbert (git) 2018-03-20 19:02 ` Peter Maydell 2019-05-01 10:59 Dr. David Alan Gilbert (git) 2019-05-01 10:59 ` Dr. David Alan Gilbert (git) 2019-05-02 11:04 ` Peter Maydell 2019-05-02 11:04 ` Peter Maydell
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).