[Qemu-devel] [PULL v2 00/16] Monitor patches for 2019-06-17

Markus Armbruster posted 16 patches 4 years, 11 months ago
Only 1 patches received!
MAINTAINERS                         |   13 +-
Makefile.objs                       |    4 +-
Makefile.target                     |    3 +-
chardev/char.c                      |    2 +-
docs/devel/writing-qmp-commands.txt |   11 +-
gdbstub.c                           |    2 +-
hmp-commands.hx                     |    2 +-
include/monitor/monitor.h           |   17 +-
monitor.c                           | 4729 -----------------------------------
monitor/Makefile.objs               |    3 +
hmp.c => monitor/hmp-cmds.c         |    7 +-
monitor/hmp.c                       | 1417 +++++++++++
monitor/misc.c                      | 2353 +++++++++++++++++
monitor/monitor-internal.h          |  183 ++
monitor/monitor.c                   |  628 +++++
qmp.c => monitor/qmp-cmds.c         |    2 +-
monitor/qmp.c                       |  404 +++
monitor/trace-events                |   15 +
qemu-deprecated.texi                |    6 +
stubs/fdset.c                       |    2 +-
stubs/monitor.c                     |    6 +-
tests/test-util-sockets.c           |    3 +-
trace-events                        |   10 -
vl.c                                |   28 +-
24 files changed, 5073 insertions(+), 4777 deletions(-)
delete mode 100644 monitor.c
create mode 100644 monitor/Makefile.objs
rename hmp.c => monitor/hmp-cmds.c (99%)
create mode 100644 monitor/hmp.c
create mode 100644 monitor/misc.c
create mode 100644 monitor/monitor-internal.h
create mode 100644 monitor/monitor.c
rename qmp.c => monitor/qmp-cmds.c (99%)
create mode 100644 monitor/qmp.c
create mode 100644 monitor/trace-events
[Qemu-devel] [PULL v2 00/16] Monitor patches for 2019-06-17
Posted by Markus Armbruster 4 years, 11 months ago
The following changes since commit 076243ffe6c1b687e9e6d98348c3bf3398df78f3:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-docs-20190617' into staging (2019-06-17 16:41:25 +0100)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-monitor-2019-06-17-v2

for you to fetch changes up to 3c45f62570aeacadf4a05bfa1afaa12bea05ae86:

  vl: Deprecate -mon pretty=... for HMP monitors (2019-06-18 08:14:17 +0200)

----------------------------------------------------------------
Monitor patches for 2019-06-17

----------------------------------------------------------------
Kevin Wolf (15):
      monitor: Remove unused password prompting fields
      monitor: Split monitor_init in HMP and QMP function
      monitor: Make MonitorQMP a child class of Monitor
      monitor: Create MonitorHMP with readline state
      monitor: Remove Monitor.cmd_table indirection
      monitor: Rename HMP command type and tables
      Move monitor.c to monitor/misc.c
      monitor: Move {hmp, qmp}.c to monitor/{hmp, qmp}-cmds.c
      monitor: Create monitor-internal.h with common definitions
      monitor: Split out monitor/qmp.c
      monitor: Split out monitor/hmp.c
      monitor: Split out monitor/monitor.c
      monitor: Split Monitor.flags into separate bools
      monitor: Replace monitor_init() with monitor_init_{hmp, qmp}()
      vl: Deprecate -mon pretty=... for HMP monitors

Yury Kotov (1):
      monitor: Fix return type of monitor_fdset_dup_fd_find

 MAINTAINERS                         |   13 +-
 Makefile.objs                       |    4 +-
 Makefile.target                     |    3 +-
 chardev/char.c                      |    2 +-
 docs/devel/writing-qmp-commands.txt |   11 +-
 gdbstub.c                           |    2 +-
 hmp-commands.hx                     |    2 +-
 include/monitor/monitor.h           |   17 +-
 monitor.c                           | 4729 -----------------------------------
 monitor/Makefile.objs               |    3 +
 hmp.c => monitor/hmp-cmds.c         |    7 +-
 monitor/hmp.c                       | 1417 +++++++++++
 monitor/misc.c                      | 2353 +++++++++++++++++
 monitor/monitor-internal.h          |  183 ++
 monitor/monitor.c                   |  628 +++++
 qmp.c => monitor/qmp-cmds.c         |    2 +-
 monitor/qmp.c                       |  404 +++
 monitor/trace-events                |   15 +
 qemu-deprecated.texi                |    6 +
 stubs/fdset.c                       |    2 +-
 stubs/monitor.c                     |    6 +-
 tests/test-util-sockets.c           |    3 +-
 trace-events                        |   10 -
 vl.c                                |   28 +-
 24 files changed, 5073 insertions(+), 4777 deletions(-)
 delete mode 100644 monitor.c
 create mode 100644 monitor/Makefile.objs
 rename hmp.c => monitor/hmp-cmds.c (99%)
 create mode 100644 monitor/hmp.c
 create mode 100644 monitor/misc.c
 create mode 100644 monitor/monitor-internal.h
 create mode 100644 monitor/monitor.c
 rename qmp.c => monitor/qmp-cmds.c (99%)
 create mode 100644 monitor/qmp.c
 create mode 100644 monitor/trace-events

-- 
2.21.0


Re: [Qemu-devel] [PULL v2 00/16] Monitor patches for 2019-06-17
Posted by Peter Maydell 4 years, 11 months ago
On Tue, 18 Jun 2019 at 07:29, Markus Armbruster <armbru@redhat.com> wrote:
>
> The following changes since commit 076243ffe6c1b687e9e6d98348c3bf3398df78f3:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-docs-20190617' into staging (2019-06-17 16:41:25 +0100)
>
> are available in the Git repository at:
>
>   git://repo.or.cz/qemu/armbru.git tags/pull-monitor-2019-06-17-v2
>
> for you to fetch changes up to 3c45f62570aeacadf4a05bfa1afaa12bea05ae86:
>
>   vl: Deprecate -mon pretty=... for HMP monitors (2019-06-18 08:14:17 +0200)
>
> ----------------------------------------------------------------
> Monitor patches for 2019-06-17
>
> ----------------------------------------------------------------
> Kevin Wolf (15):
>       monitor: Remove unused password prompting fields
>       monitor: Split monitor_init in HMP and QMP function
>       monitor: Make MonitorQMP a child class of Monitor
>       monitor: Create MonitorHMP with readline state
>       monitor: Remove Monitor.cmd_table indirection
>       monitor: Rename HMP command type and tables
>       Move monitor.c to monitor/misc.c
>       monitor: Move {hmp, qmp}.c to monitor/{hmp, qmp}-cmds.c
>       monitor: Create monitor-internal.h with common definitions
>       monitor: Split out monitor/qmp.c
>       monitor: Split out monitor/hmp.c
>       monitor: Split out monitor/monitor.c
>       monitor: Split Monitor.flags into separate bools
>       monitor: Replace monitor_init() with monitor_init_{hmp, qmp}()
>       vl: Deprecate -mon pretty=... for HMP monitors
>
> Yury Kotov (1):
>       monitor: Fix return type of monitor_fdset_dup_fd_find


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.

-- PMM