qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/19]: QMP queue
@ 2012-09-05 18:58 Luiz Capitulino
  2012-09-05 18:58 ` [Qemu-devel] [PATCH 01/19] Add support for pretty-printing response in qmp-shell Luiz Capitulino
                   ` (19 more replies)
  0 siblings, 20 replies; 23+ messages in thread
From: Luiz Capitulino @ 2012-09-05 18:58 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-devel

Let's get the ball rolling for QMP in 1.3 :)

This pull request contains the send-key command conversion, screendump qapi
conversion and a few fixes.

The changes (since f45ddd14209a4d1b95a4096d50a561b7f6270118) are available
in the following repository:

    git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

Amos Kong (7):
      fix doc of using raw values with sendkey
      monitor: rename keyname '<' to 'less'
      hmp: rename arguments
      qapi: generate list struct and visit_list for enum
      qapi: add the QKeyCode enum
      monitor: move key_defs[] table and introduce two help functions
      qapi: convert sendkey

Daniel P. Berrange (1):
      Add support for pretty-printing response in qmp-shell

Luiz Capitulino (9):
      error: add error_setg()
      console: vga_hw_screen_dump_ptr: take Error argument
      qapi: convert screendump
      vga: ppm_save(): add error handling
      omap_lcdc: rename ppm_save() to omap_ppm_save()
      omap_lcdc: omap_ppm_save(): add error handling
      g364fb: g364fb_screen_dump(): add error handling
      tcx: tcx24_screen_dump(): add error handling
      tcx: tcx_screen_dump(): add error handling

Stefan Weil (2):
      qapi: Fix potential NULL pointer segfault
      json-parser: Fix potential NULL pointer segfault

 QMP/qmp-shell         |  46 ++++++---
 console.c             |   7 +-
 console.h             |  10 +-
 error.h               |   6 ++
 hmp-commands.hx       |  13 ++-
 hmp.c                 |  64 +++++++++++++
 hmp.h                 |   2 +
 hw/blizzard.c         |   4 +-
 hw/g364fb.c           |  55 ++++++++---
 hw/omap_lcdc.c        |  66 +++++++++----
 hw/qxl.c              |   7 +-
 hw/tcx.c              |  97 +++++++++++++++----
 hw/vga.c              |  38 ++++++--
 hw/vga_int.h          |   3 +-
 hw/vmware_vga.c       |   7 +-
 input.c               | 251 ++++++++++++++++++++++++++++++++++++++++++++++++++
 monitor.c             | 251 +-------------------------------------------------
 qapi-schema.json      |  59 ++++++++++++
 qmp-commands.hx       |  33 ++++++-
 qobject.h             |   2 +-
 scripts/qapi-types.py |  16 +++-
 scripts/qapi-visit.py |  16 +++-
 22 files changed, 704 insertions(+), 349 deletions(-)

^ permalink raw reply	[flat|nested] 23+ messages in thread
* [Qemu-devel] [PULL 00/19]: QMP queue
@ 2011-10-27 19:01 Luiz Capitulino
  2011-10-31 16:52 ` Anthony Liguori
  0 siblings, 1 reply; 23+ messages in thread
From: Luiz Capitulino @ 2011-10-27 19:01 UTC (permalink / raw)
  To: aliguori; +Cc: mdroth, qemu-devel

Anthony,

This pull request contains only my "QAPI conversions round 2" series (which
got no review comments... last chance!).

The changes (since 9f60639b848944200c3d33a89233d808de0b5a43) are available
in the following repository:

    git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

Luiz Capitulino (19):
      qapi-commands.py: Don't call the output marshal on error
      qapi: Convert query-mice
      qapi: Convert query-migrate
      Monitor: Make mon_set_cpu() public
      Monitor: Introduce monitor_get_cpu_index()
      qapi: Convert the cpu command
      qapi: Convert query-cpus
      block: iostatus: Drop BDRV_IOS_INVAL
      block: Rename the BlockIOStatus enum values
      qapi: Convert query-block
      qapi: Convert query-blockstats
      qerror: Add a user string for QERR_FEATURE_DISABLED
      qapi: Convert query-vnc
      qapi: Convert query-spice
      qapi: Convert query-balloon
      qapi: Convert query-pci
      QMP: Drop the query commands dispatch table
      Monitor: do_info(): Drop QMP command handling code
      Drop qemu-objects.h from modules that don't require it

 balloon.c                |   72 +-----
 balloon.h                |    6 +-
 block.c                  |  234 ++++++------------
 block.h                  |    5 -
 block_int.h              |    4 +-
 console.h                |    9 -
 cpus.c                   |   45 ++++
 error.c                  |    3 +-
 hmp-commands.hx          |    3 +-
 hmp.c                    |  407 ++++++++++++++++++++++++++++++
 hmp.h                    |   10 +
 hw/pci-stub.c            |   15 +-
 hw/pci.c                 |  322 +++++++++---------------
 hw/pci.h                 |    4 -
 hw/virtio-balloon.c      |   78 +-----
 input.c                  |   64 ++----
 migration.c              |   82 ++-----
 monitor.c                |  313 ++----------------------
 monitor.h                |    2 +
 qapi-schema.json         |  616 ++++++++++++++++++++++++++++++++++++++++++++++
 qerror.c                 |    4 +
 qmp-commands.hx          |   60 +++++-
 qmp.c                    |   27 ++
 scripts/qapi-commands.py |    4 +-
 ui/spice-core.c          |  139 +++++------
 ui/vnc.c                 |  135 +++++++----
 vl.c                     |    2 +-
 27 files changed, 1611 insertions(+), 1054 deletions(-)

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

end of thread, other threads:[~2012-09-10 13:18 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-05 18:58 [Qemu-devel] [PULL 00/19]: QMP queue Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 01/19] Add support for pretty-printing response in qmp-shell Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 02/19] fix doc of using raw values with sendkey Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 03/19] monitor: rename keyname '<' to 'less' Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 04/19] hmp: rename arguments Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 05/19] qapi: generate list struct and visit_list for enum Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 06/19] qapi: add the QKeyCode enum Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 07/19] monitor: move key_defs[] table and introduce two help functions Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 08/19] qapi: convert sendkey Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 09/19] qapi: Fix potential NULL pointer segfault Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 10/19] json-parser: " Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 11/19] error: add error_setg() Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 12/19] console: vga_hw_screen_dump_ptr: take Error argument Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 13/19] qapi: convert screendump Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 14/19] vga: ppm_save(): add error handling Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 15/19] omap_lcdc: rename ppm_save() to omap_ppm_save() Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 16/19] omap_lcdc: omap_ppm_save(): add error handling Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 17/19] g364fb: g364fb_screen_dump(): " Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 18/19] tcx: tcx24_screen_dump(): " Luiz Capitulino
2012-09-05 18:58 ` [Qemu-devel] [PATCH 19/19] tcx: tcx_screen_dump(): " Luiz Capitulino
2012-09-10 13:18 ` [Qemu-devel] [PULL 00/19]: QMP queue Aurelien Jarno
  -- strict thread matches above, loose matches on Subject: below --
2011-10-27 19:01 Luiz Capitulino
2011-10-31 16:52 ` Anthony Liguori

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).