qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/14]: QMP queue
@ 2012-01-18 17:41 Luiz Capitulino
  2012-01-18 17:41 ` [Qemu-devel] [PATCH 01/14] vnc: Simplify vnc_display_password() Luiz Capitulino
                   ` (14 more replies)
  0 siblings, 15 replies; 22+ messages in thread
From: Luiz Capitulino @ 2012-01-18 17:41 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori

This pull request contains my QAPI conversions round 4, improvements to
error reporting and a small fix.

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

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

Anthony Liguori (1):
      monitor: expose readline state

Luiz Capitulino (9):
      vnc: Simplify vnc_display_password()
      qapi: Convert set_password
      qapi: Convert expire_password
      block: eject_device(): Use error_set()
      qapi: Convert eject
      qapi: Introduce change-vnc-password
      qerror: Extend QERR_DEVICE_ENCRYPTED
      qapi: Convert change
      qapi: Convert block_set_io_throttle

Stefan Hajnoczi (3):
      qerror: add check-qerror.sh to verify alphabetical order
      qerror: restore alphabetical order over qerrors
      block: use proper qerrors in qmp_block_resize

Stefan Weil (1):
      qmp: Add missing gcc format attribute and fix format string

 blockdev.c               |  155 ++++++++++++++++++++++------------------
 blockdev.h               |    8 +--
 console.h                |    3 -
 hmp-commands.hx          |   15 ++---
 hmp.c                    |  102 ++++++++++++++++++++++++++
 hmp.h                    |    5 ++
 monitor.c                |  179 +++-------------------------------------------
 monitor.h                |    5 ++
 qapi-schema.json         |  163 +++++++++++++++++++++++++++++++++++++++++-
 qerror.c                 |   91 +++++++++++++-----------
 qerror.h                 |   80 +++++++++++----------
 qmp-commands.hx          |   31 +++-----
 qmp.c                    |  148 +++++++++++++++++++++++++++++++++++++-
 scripts/check-qerror.sh  |   22 ++++++
 test-qmp-input-visitor.c |    7 +-
 ui/vnc.c                 |   14 +---
 16 files changed, 657 insertions(+), 371 deletions(-)

^ permalink raw reply	[flat|nested] 22+ messages in thread
* [Qemu-devel] [PULL 00/14] QMP queue
@ 2014-01-06 22:03 Luiz Capitulino
  2014-01-06 22:41 ` Peter Maydell
  2014-01-13 23:27 ` Peter Crosthwaite
  0 siblings, 2 replies; 22+ messages in thread
From: Luiz Capitulino @ 2014-01-06 22:03 UTC (permalink / raw)
  To: anthony; +Cc: qemu-devel

The following changes since commit f976b09ea249cccc3fd41c98aaf6512908db0bae:

  PPC: Fix compilation with TCG debug (2013-12-22 19:15:55 +0100)

are available in the git repository at:

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

for you to fetch changes up to c950114286ea358a93ce632db0421945e1008395:

  migration: qmp_migrate(): keep working after syntax error (2014-01-06 15:02:30 -0500)

----------------------------------------------------------------
Jason J. Herne (1):
      qemu-monitor: HMP cpu-add wrapper

Luiz Capitulino (1):
      migration: qmp_migrate(): keep working after syntax error

Paolo Bonzini (6):
      vl: add missing transition debug->finish_migrate
      rng: initialize file descriptor to -1
      qom: fix leak for objects created with -object
      qom: catch errors in object_property_add_child
      monitor: add object-del (QMP) and object_del (HMP) command
      monitor: add object-add (QMP) and object_add (HMP) command

Peter Crosthwaite (6):
      error: Add error_abort
      qdev: Delete dead code
      hw: Remove assert_no_error usages
      target-i386: Remove assert_no_error usage
      qemu-option: Remove qemu_opts_create_nofail
      qerror: Remove assert_no_error()

 backends/rng-random.c            |  4 +--
 block/blkdebug.c                 |  2 +-
 block/blkverify.c                |  2 +-
 block/curl.c                     |  2 +-
 block/gluster.c                  |  2 +-
 block/iscsi.c                    |  2 +-
 block/nbd.c                      |  3 +-
 block/qcow2.c                    |  2 +-
 block/raw-posix.c                |  2 +-
 block/raw-win32.c                |  5 +--
 block/rbd.c                      |  2 +-
 block/sheepdog.c                 |  2 +-
 block/vvfat.c                    |  2 +-
 blockdev.c                       |  6 ++--
 hmp-commands.hx                  | 41 +++++++++++++++++++++
 hmp.c                            | 77 ++++++++++++++++++++++++++++++++++++++++
 hmp.h                            |  3 ++
 hw/core/qdev-properties-system.c |  8 ++---
 hw/core/qdev-properties.c        | 40 ++++++---------------
 hw/core/qdev.c                   | 28 ++++-----------
 hw/dma/xilinx_axidma.c           | 13 +++----
 hw/net/xilinx_axienet.c          | 13 +++----
 hw/watchdog/watchdog.c           |  3 +-
 include/hw/xilinx.h              | 14 +++-----
 include/monitor/monitor.h        |  3 ++
 include/qapi/error.h             |  6 ++++
 include/qapi/qmp/qerror.h        |  1 -
 include/qapi/visitor.h           |  3 +-
 include/qemu/option.h            |  1 -
 include/qemu/typedefs.h          |  2 ++
 migration.c                      |  1 +
 qapi-schema.json                 | 34 ++++++++++++++++++
 qdev-monitor.c                   |  2 +-
 qemu-img.c                       |  2 +-
 qmp-commands.hx                  | 51 ++++++++++++++++++++++++++
 qmp.c                            | 76 +++++++++++++++++++++++++++++++++++++++
 qobject/qerror.c                 |  8 -----
 qom/object.c                     | 11 ++++--
 target-arm/cpu.c                 |  7 ++--
 target-i386/cpu.c                |  4 +--
 util/error.c                     | 22 +++++++++++-
 util/qemu-config.c               |  2 +-
 util/qemu-option.c               |  9 -----
 util/qemu-sockets.c              | 18 +++++-----
 vl.c                             | 19 ++++++----
 45 files changed, 405 insertions(+), 155 deletions(-)

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

end of thread, other threads:[~2014-01-14 16:45 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-18 17:41 [Qemu-devel] [PULL 00/14]: QMP queue Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 01/14] vnc: Simplify vnc_display_password() Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 02/14] qapi: Convert set_password Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 03/14] qapi: Convert expire_password Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 04/14] block: eject_device(): Use error_set() Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 05/14] qapi: Convert eject Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 06/14] monitor: expose readline state Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 07/14] qapi: Introduce change-vnc-password Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 08/14] qerror: Extend QERR_DEVICE_ENCRYPTED Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 09/14] qapi: Convert change Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 10/14] qapi: Convert block_set_io_throttle Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 11/14] qmp: Add missing gcc format attribute and fix format string Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 12/14] qerror: add check-qerror.sh to verify alphabetical order Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 13/14] qerror: restore alphabetical order over qerrors Luiz Capitulino
2012-01-18 17:41 ` [Qemu-devel] [PATCH 14/14] block: use proper qerrors in qmp_block_resize Luiz Capitulino
2012-01-24  9:35   ` Markus Armbruster
2012-01-19 18:47 ` [Qemu-devel] [PULL 00/14]: QMP queue Anthony Liguori
  -- strict thread matches above, loose matches on Subject: below --
2014-01-06 22:03 [Qemu-devel] [PULL 00/14] " Luiz Capitulino
2014-01-06 22:41 ` Peter Maydell
2014-01-13 23:27 ` Peter Crosthwaite
2014-01-14  3:38   ` Edgar E. Iglesias
2014-01-14 16:44     ` Kevin Wolf

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