mbox

[PULL,00/14] QMP queue

Message ID 1389045795-18706-1-git-send-email-lcapitulino@redhat.com
State New
Headers show

Pull-request

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

Message

Luiz Capitulino Jan. 6, 2014, 10:03 p.m. UTC
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(-)

Comments

Peter Maydell Jan. 6, 2014, 10:41 p.m. UTC | #1
On 6 January 2014 22:03, Luiz Capitulino <lcapitulino@redhat.com> wrote:
> 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()
>
>  target-arm/cpu.c                 |  7 ++--
>  target-i386/cpu.c                |  4 +--

It took me a while to figure out where the target-arm/ change in this
pullreq was, because it's been stuffed into the "hw:" patch (whereas
target-i386 got its own patch). However, the change itself is OK so
it's fine.

thanks
-- PMM
Peter Crosthwaite Jan. 13, 2014, 11:27 p.m. UTC | #2
Ping,

Has this one been forgotten or are there issues? PMM had a small
comment, but he waived it AFAICT.

Regards,
Peter

On Tue, Jan 7, 2014 at 8:03 AM, Luiz Capitulino <lcapitulino@redhat.com> wrote:
> 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(-)
>
Edgar E. Iglesias Jan. 14, 2014, 3:38 a.m. UTC | #3
On Tue, Jan 14, 2014 at 09:27:10AM +1000, Peter Crosthwaite wrote:
> Ping,
> 
> Has this one been forgotten or are there issues? PMM had a small
> comment, but he waived it AFAICT.

Pong,

I've merged it now, thanks!

Cheers,
Edgar

> 
> Regards,
> Peter
> 
> On Tue, Jan 7, 2014 at 8:03 AM, Luiz Capitulino <lcapitulino@redhat.com> wrote:
> > 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(-)
> >
>
Kevin Wolf Jan. 14, 2014, 4:44 p.m. UTC | #4
Am 14.01.2014 um 04:38 hat Edgar E. Iglesias geschrieben:
> On Tue, Jan 14, 2014 at 09:27:10AM +1000, Peter Crosthwaite wrote:
> > Ping,
> > 
> > Has this one been forgotten or are there issues? PMM had a small
> > comment, but he waived it AFAICT.
> 
> Pong,
> 
> I've merged it now, thanks!

I believe it's something in this pull requests that breaks make check.

Kevin