qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 1.1 v1 00/16]: QAPI conversions round 3
@ 2011-11-28 18:11 Luiz Capitulino
  2011-11-28 18:11 ` [Qemu-devel] [PATCH 01/16] qapi: Complete system_powerdown conversion Luiz Capitulino
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Luiz Capitulino @ 2011-11-28 18:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori, mdroth

Most of the conversions are simple rebases from Anthony's "glib" branch (where
he cooked the QAPI stuff). But some of them I did from scratch and these
require more attention when reviewing (specially the schema documentation -
look for conversions containing only my signed-off).

With this series applied, there will be only 14 QMP commands left to be
converted to the QAPI. Some of them have deeper error paths, and hence deserve
a series by their own. Others depend on the new QMP server and can't be
converted yet.

Also note that the first two patches in this series are small fixes of
previous conversions.

 balloon.c        |   28 ++----
 balloon.h        |    3 -
 blockdev.c       |   89 +++++++-----------
 blockdev.h       |    3 -
 console.h        |    2 -
 cpus.c           |   89 ++++++++++++++++++
 hmp-commands.hx  |   36 +++-----
 hmp.c            |  148 ++++++++++++++++++++++++++++++
 hmp.h            |   12 +++
 migration.c      |   28 ++----
 migration.h      |    7 --
 monitor.c        |  201 ++++++-----------------------------------
 monitor.h        |    3 +
 net.c            |   10 +-
 net.h            |    1 -
 qapi-schema.json |  267 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 qerror.c         |    4 +
 qerror.h         |    3 +
 qmp-commands.hx  |   77 ++++------------
 qmp.c            |   37 ++++++++
 20 files changed, 676 insertions(+), 372 deletions(-)

^ permalink raw reply	[flat|nested] 18+ messages in thread
* [Qemu-devel] [PATCH v2 00/16]: QAPI conversions round 3
@ 2011-12-05 20:00 Luiz Capitulino
  2011-12-05 20:00 ` [Qemu-devel] [PATCH 07/16] qapi: Convert inject-nmi Luiz Capitulino
  0 siblings, 1 reply; 18+ messages in thread
From: Luiz Capitulino @ 2011-12-05 20:00 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori, mdroth

Most of the conversions are simple rebases from Anthony's "glib" branch (where
he cooked the QAPI stuff). But some of them I did from scratch and these
require more attention when reviewing (specially the schema documentation -
look for conversions containing only my signed-off).

With this series applied, there will be only 14 QMP commands left to be
converted to the QAPI. Some of them have deeper error paths, and hence deserve
a series by their own. Others depend on the new QMP server and can't be
converted yet.

Also note that the first two patches in this series are small fixes of
previous conversions.

changelog
---------

v2

o Rename memsave's 'cpu' argument to 'cpu-index' (to follow the
  standard set by human-monitor-command)
o Rebase against changes in master

 balloon.c        |   28 ++----
 balloon.h        |    3 -
 blockdev.c       |   89 +++++++-----------
 blockdev.h       |    4 -
 console.h        |    2 -
 cpus.c           |   90 ++++++++++++++++++
 hmp-commands.hx  |   36 +++-----
 hmp.c            |  148 ++++++++++++++++++++++++++++++
 hmp.h            |   12 +++
 migration.c      |   28 ++----
 migration.h      |    7 --
 monitor.c        |  201 ++++++-----------------------------------
 monitor.h        |    3 +
 net.c            |   10 +-
 net.h            |    1 -
 qapi-schema.json |  267 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 qerror.c         |    4 +
 qerror.h         |    3 +
 qmp-commands.hx  |   77 ++++------------
 qmp.c            |   37 ++++++++
 20 files changed, 677 insertions(+), 373 deletions(-)

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

end of thread, other threads:[~2011-12-05 20:00 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-28 18:11 [Qemu-devel] [PATCH 1.1 v1 00/16]: QAPI conversions round 3 Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 01/16] qapi: Complete system_powerdown conversion Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 02/16] console: Drop unused prototypes Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 03/16] QError: Introduce QERR_IO_ERROR Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 04/16] qapi: Convert memsave Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 05/16] qapi: Convert pmemsave Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 06/16] qapi: Convert cont Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 07/16] qapi: Convert inject-nmi Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 08/16] qapi: Convert set_link Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 09/16] qapi: Convert block_passwd Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 10/16] qapi: Convert balloon Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 11/16] qapi: Convert block_resize Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 12/16] qapi: Convert blockdev_snapshot_sync Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 13/16] qapi: Convert human-monitor-command Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 14/16] qapi: Convert migrate_cancel Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 15/16] qapi: Convert migrate_set_downtime Luiz Capitulino
2011-11-28 18:11 ` [Qemu-devel] [PATCH 16/16] qapi: Convert migrate_set_speed Luiz Capitulino
  -- strict thread matches above, loose matches on Subject: below --
2011-12-05 20:00 [Qemu-devel] [PATCH v2 00/16]: QAPI conversions round 3 Luiz Capitulino
2011-12-05 20:00 ` [Qemu-devel] [PATCH 07/16] qapi: Convert inject-nmi Luiz Capitulino

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