From: Markus Armbruster <armbru@redhat.com>
To: Peter Xu <peterx@redhat.com>
Cc: qemu-devel@nongnu.org,
"Dr . David Alan Gilbert" <dgilbert@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v7 0/7] monitor: enable OOB by default
Date: Mon, 03 Sep 2018 07:36:18 +0200 [thread overview]
Message-ID: <87tvn7dtwt.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20180903043149.4076-1-peterx@redhat.com> (Peter Xu's message of "Mon, 3 Sep 2018 12:31:42 +0800")
Peter Xu <peterx@redhat.com> writes:
> (this series is based on Markus's monitor-next tree so if patchew
> spits something out with "apply failure" then it's expected)
Easy to avoid with suitable Based: tags in the cover letter:
Based-on: <20180828191048.29806-1-armbru@redhat.com>
Based-on: <20180901111716.1675-1-armbru@redhat.com>
The first one gets you "[PULL 0/6] QAPI patches for 2018-08-28", which
includes your PATCH 1+2. The second one gets you "[PULL 0/6] Monitor
patches for 2018-09-01", which is monitor-next.
I pushed the result for reviewers' convenience:
http://repo.or.cz/qemu/armbru.git/shortlog/refs/heads/peterx-oob
>
> v7:
> - use Markus's commit message for patch "qapi: Drop
> qapi_event_send_FOO()'s Error ** argument" [Markus]
> - update commit message for "qapi: remove COMMAND_DROPPED event" since
> QEMU 3.0 is released [Eric/Dave]
> - rebase to Markus's monitor-next tree:
> http://repo.or.cz/qemu/armbru.git/shortlog/refs/heads/monitor-next
> the patch "monitor: suspend monitor instead of send CMD_DROP"
> re-written since people prefer to drop need_resume flag so now I
> hand-made it. Dropped a few patches since not appliable any more.
>
> Please review. Thanks,
>
> Markus Armbruster (1):
> qapi: Fix build_params() for empty parameter list
>
> Peter Xu (6):
> qapi: Drop qapi_event_send_FOO()'s Error ** argument
> monitor: suspend monitor instead of send CMD_DROP
> qapi: remove COMMAND_DROPPED event
> monitor: remove "x-oob", turn oob on by default
> Revert "tests: Add parameter to qtest_init_without_qmp_handshake"
> tests: add oob functional test for test-qmp-cmds
>
> block/block-backend.c | 8 ++---
> block/qcow2.c | 2 +-
> block/quorum.c | 4 +--
> block/write-threshold.c | 3 +-
> blockjob.c | 13 ++++----
> cpus.c | 8 ++---
> docs/devel/qapi-code-gen.txt | 6 ++--
> docs/interop/qmp-spec.txt | 5 ++--
> dump.c | 3 +-
> hw/acpi/core.c | 2 +-
> hw/acpi/cpu.c | 2 +-
> hw/acpi/memory_hotplug.c | 5 ++--
> hw/char/virtio-console.c | 3 +-
> hw/core/qdev.c | 3 +-
> hw/net/virtio-net.c | 2 +-
> hw/ppc/spapr_rtc.c | 2 +-
> hw/timer/mc146818rtc.c | 2 +-
> hw/virtio/virtio-balloon.c | 3 +-
> hw/watchdog/watchdog.c | 15 +++++-----
> include/monitor/monitor.h | 1 -
> include/qapi/qmp-event.h | 3 +-
> job.c | 2 +-
> migration/migration.c | 4 +--
> migration/ram.c | 2 +-
> monitor.c | 58 ++++++++++++++----------------------
> qapi/misc.json | 40 -------------------------
> scripts/qapi/common.py | 10 +++----
> scripts/qapi/events.py | 23 ++++----------
> scsi/pr-manager-helper.c | 3 +-
> tests/libqtest.c | 10 +++----
> tests/libqtest.h | 4 +--
> tests/qmp-test.c | 6 ++--
> tests/test-qmp-cmds.c | 16 ++++++++++
> tests/test-qmp-event.c | 11 ++++---
> ui/spice-core.c | 10 +++----
> ui/vnc.c | 7 ++---
> vl.c | 21 +++++--------
> 37 files changed, 120 insertions(+), 202 deletions(-)
Diffstat looks friendlier without PATCH 1+2:
docs/interop/qmp-spec.txt | 5 +++--
include/monitor/monitor.h | 1 -
monitor.c | 55 ++++++++++++++++++-----------------------------
qapi/misc.json | 40 ----------------------------------
tests/libqtest.c | 10 ++++-----
tests/libqtest.h | 4 +---
tests/qmp-test.c | 6 +++---
tests/test-qmp-cmds.c | 16 ++++++++++++++
vl.c | 5 -----
9 files changed, 48 insertions(+), 94 deletions(-)
prev parent reply other threads:[~2018-09-03 5:36 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-03 4:31 [Qemu-devel] [PATCH v7 0/7] monitor: enable OOB by default Peter Xu
2018-09-03 4:31 ` [Qemu-devel] [PATCH v7 1/7] qapi: Fix build_params() for empty parameter list Peter Xu
2018-09-03 4:31 ` [Qemu-devel] [PATCH v7 2/7] qapi: Drop qapi_event_send_FOO()'s Error ** argument Peter Xu
2018-09-03 4:31 ` [Qemu-devel] [PATCH v7 3/7] monitor: suspend monitor instead of send CMD_DROP Peter Xu
2018-09-03 7:38 ` Markus Armbruster
2018-09-03 7:56 ` Markus Armbruster
2018-09-03 9:06 ` Peter Xu
2018-09-03 13:16 ` Markus Armbruster
2018-09-04 3:33 ` Peter Xu
2018-09-04 6:17 ` Markus Armbruster
2018-09-04 7:01 ` Peter Xu
2018-09-03 4:31 ` [Qemu-devel] [PATCH v7 4/7] qapi: remove COMMAND_DROPPED event Peter Xu
2018-09-03 7:49 ` Markus Armbruster
2018-09-03 10:16 ` Peter Xu
2018-09-03 13:31 ` Markus Armbruster
2018-09-03 14:30 ` Eric Blake
2018-09-03 14:41 ` Daniel P. Berrangé
2018-09-04 5:30 ` Peter Xu
2018-09-04 8:04 ` Markus Armbruster
2018-09-05 3:53 ` Peter Xu
2018-09-04 6:39 ` Markus Armbruster
2018-09-04 8:23 ` Daniel P. Berrangé
2018-09-04 11:46 ` Markus Armbruster
2018-09-05 11:45 ` Dr. David Alan Gilbert
2018-09-03 4:31 ` [Qemu-devel] [PATCH v7 5/7] monitor: remove "x-oob", turn oob on by default Peter Xu
2018-09-03 4:31 ` [Qemu-devel] [PATCH v7 6/7] Revert "tests: Add parameter to qtest_init_without_qmp_handshake" Peter Xu
2018-09-03 4:31 ` [Qemu-devel] [PATCH v7 7/7] tests: add oob functional test for test-qmp-cmds Peter Xu
2018-09-03 5:36 ` Markus Armbruster [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87tvn7dtwt.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=dgilbert@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.