qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 0/4] qapi: Convert migrate
@ 2012-03-09 18:13 Luiz Capitulino
  2012-03-09 18:13 ` [Qemu-devel] [PATCH 1/4] QError: Introduce new errors for the migration command Luiz Capitulino
                   ` (3 more replies)
  0 siblings, 4 replies; 31+ messages in thread
From: Luiz Capitulino @ 2012-03-09 18:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini, aliguori, jan.kiszka, quintela

v2

o Drop qemu_get_fd() (use monitor_get_fd(cur_mon, instead)
o Drop qdict_copy() (use refcount instead)
o Check for monitor_suspend() return value
o Other minor changes

Original intro:

This is a rebase of Anthony's conversion, from his glib branch; and this is
also the beginning of the conversion of complex commands to the qapi.

There are two important changes that should be observed:

 1. patch 3/4 purges the 'mon' object from migration code. One of the
    consequences is that we loose the ability to print progress status to
    the HMP user (esp. in block migration)

 2. The HMP hmp_migrate() command is a bit tricky when in non-detached
    mode: we lock the monitor and poll for the migration status from a
    timer handler. This obviously assumes that migration will end at some
    point

 arch_init.c       |    2 +-
 block-migration.c |   58 ++++++++++++++++++-----------------------
 error.c           |   13 ++++++++++
 error.h           |    5 ++++
 hmp-commands.hx   |    3 +--
 hmp.c             |   56 ++++++++++++++++++++++++++++++++++++++++
 hmp.h             |    1 +
 migration-fd.c    |    2 +-
 migration.c       |   74 +++++++++++++++--------------------------------------
 migration.h       |    5 +---
 qapi-schema.json  |   21 +++++++++++++++
 qerror.c          |    8 ++++++
 qerror.h          |    6 +++++
 qmp-commands.hx   |    9 +------
 savevm.c          |   42 +++++++++++++++---------------
 sysemu.h          |   11 ++++----
 vmstate.h         |    3 +--
 17 files changed, 187 insertions(+), 132 deletions(-)

^ permalink raw reply	[flat|nested] 31+ messages in thread
* [Qemu-devel] [PATCH v3 0/4] qapi: Convert migrate
@ 2012-03-12 19:58 Luiz Capitulino
  2012-03-12 19:58 ` [Qemu-devel] [PATCH 1/4] QError: Introduce new errors for the migration command Luiz Capitulino
  0 siblings, 1 reply; 31+ messages in thread
From: Luiz Capitulino @ 2012-03-12 19:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini, aliguori, jan.kiszka, eblake, quintela

v3

o Implement progess counter (for the new HMP command)
o Fix English mistakes in changelog
o Improve 'detach' parameter description

 arch_init.c       |    2 +-
 block-migration.c |   58 ++++++++++++++++++-----------------------
 error.c           |   13 ++++++++++
 error.h           |    5 ++++
 hmp-commands.hx   |    3 +--
 hmp.c             |   74 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 hmp.h             |    1 +
 migration-fd.c    |    2 +-
 migration.c       |   74 +++++++++++++++--------------------------------------
 migration.h       |    5 +---
 qapi-schema.json  |   21 +++++++++++++++
 qerror.c          |    8 ++++++
 qerror.h          |    6 +++++
 qmp-commands.hx   |    9 +------
 savevm.c          |   42 +++++++++++++++---------------
 sysemu.h          |   11 ++++----
 vmstate.h         |    3 +--
 17 files changed, 205 insertions(+), 132 deletions(-)

^ permalink raw reply	[flat|nested] 31+ messages in thread
* [Qemu-devel] [PULL 0/4]: QMP queue
@ 2012-03-16 19:26 Luiz Capitulino
  2012-03-16 19:26 ` [Qemu-devel] [PATCH 1/4] QError: Introduce new errors for the migration command Luiz Capitulino
  0 siblings, 1 reply; 31+ messages in thread
From: Luiz Capitulino @ 2012-03-16 19:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori

Contains only the migrate command conversion to the QAPI series. I hoped I'd
finish the device_add/del conversion yesterday, but I didn't. Let's merge
this before it breaks...

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

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

Luiz Capitulino (4):
      QError: Introduce new errors for the migration command
      Error: Introduce error_copy()
      Purge migration of (almost) everything to do with monitors
      qapi: Convert migrate

 arch_init.c       |    2 +-
 block-migration.c |   58 ++++++++++++++++++-----------------------
 error.c           |   13 ++++++++++
 error.h           |    5 ++++
 hmp-commands.hx   |    3 +--
 hmp.c             |   74 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 hmp.h             |    1 +
 migration-fd.c    |    2 +-
 migration.c       |   74 +++++++++++++++--------------------------------------
 migration.h       |    5 +---
 qapi-schema.json  |   21 +++++++++++++++
 qerror.c          |    8 ++++++
 qerror.h          |    6 +++++
 qmp-commands.hx   |    9 +------
 savevm.c          |   42 +++++++++++++++---------------
 sysemu.h          |   11 ++++----
 vmstate.h         |    3 +--
 17 files changed, 205 insertions(+), 132 deletions(-)

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

end of thread, other threads:[~2012-03-16 19:26 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-09 18:13 [Qemu-devel] [PATCH v2 0/4] qapi: Convert migrate Luiz Capitulino
2012-03-09 18:13 ` [Qemu-devel] [PATCH 1/4] QError: Introduce new errors for the migration command Luiz Capitulino
2012-03-09 18:13 ` [Qemu-devel] [PATCH 2/4] Error: Introduce error_copy() Luiz Capitulino
2012-03-09 18:13 ` [Qemu-devel] [PATCH 3/4] Purge migration of (almost) everything to do with monitors Luiz Capitulino
2012-03-09 18:20   ` Jan Kiszka
2012-03-09 18:30     ` Luiz Capitulino
2012-03-09 19:05       ` Jan Kiszka
2012-03-09 19:12         ` Anthony Liguori
2012-03-09 19:48           ` Luiz Capitulino
2012-03-09 19:57             ` Luiz Capitulino
2012-03-12 14:51               ` Kevin Wolf
2012-03-12 15:01                 ` Luiz Capitulino
2012-03-09 18:31     ` Anthony Liguori
2012-03-09 18:45       ` Eric Blake
2012-03-09 18:53         ` Anthony Liguori
2012-03-09 19:42           ` Eric Blake
2012-03-09 19:48             ` Eric Blake
2012-03-09 18:59       ` Jan Kiszka
2012-03-09 18:13 ` [Qemu-devel] [PATCH 4/4] qapi: Convert migrate Luiz Capitulino
2012-03-09 18:26   ` Eric Blake
2012-03-09 18:33     ` Luiz Capitulino
2012-03-09 18:35     ` Anthony Liguori
2012-03-09 18:37       ` Luiz Capitulino
2012-03-09 22:51   ` Alon Levy
2012-03-12 13:21     ` Luiz Capitulino
2012-03-12 13:49       ` Alon Levy
2012-03-12 14:01         ` Luiz Capitulino
2012-03-12 14:23           ` Alon Levy
2012-03-12 14:34             ` Luiz Capitulino
  -- strict thread matches above, loose matches on Subject: below --
2012-03-12 19:58 [Qemu-devel] [PATCH v3 0/4] " Luiz Capitulino
2012-03-12 19:58 ` [Qemu-devel] [PATCH 1/4] QError: Introduce new errors for the migration command Luiz Capitulino
2012-03-16 19:26 [Qemu-devel] [PULL 0/4]: QMP queue Luiz Capitulino
2012-03-16 19:26 ` [Qemu-devel] [PATCH 1/4] QError: Introduce new errors for the migration command 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).