qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: dgilbert@redhat.com, lvivier@redhat.com, peterx@redhat.com
Subject: [Qemu-devel] [PULL 00/14] Migration PULL request
Date: Tue, 13 Jun 2017 11:51:06 +0200	[thread overview]
Message-ID: <20170613095120.11373-1-quintela@redhat.com> (raw)

Hi

This pull request includes:
- don't set errp directly (eduardo)
- isolate return path (peter)
- rest of consistent output series
- 10 first patches of the misc cleanup series

Please, apply.

Thanks, Juan.

The following changes since commit 9bba618f18b1a60a3f2668db82b453f6cd9467c0:

  Merge remote-tracking branch 'remotes/elmarco/tags/char-pull-request' into staging (2017-06-12 19:26:49 +0100)

are available in the git repository at:

  git://github.com/juanquintela/qemu.git tags/migration/20170613

for you to fetch changes up to 6666c96aac9151568736226dec99aa8acb14d07c:

  migration: Move migration.h to migration/ (2017-06-13 11:00:45 +0200)

----------------------------------------------------------------
migration/next for 20170613

----------------------------------------------------------------
Eduardo Habkost (1):
      migration: Don't try to set *errp directly

Juan Quintela (12):
      ram: Print block stats also in the complete case
      ram: Now POSTCOPY_ACTIVE is the same that STATUS_ACTIVE
      migration: Remove MigrationState from migration_channel_incomming()
      migration: Move self_announce_delay() to misc.h
      migration: Split registration functions from vmstate.h
      migration: Move dump_vmsate_json_to_file() to misc.h
      migration: Move constants to savevm.h
      migration: Commands are only used inside migration.c
      migration: ram_control_* are implemented in qemu_file
      migration: create global_state.c
      migration: Move remaining exported functions to migration/misc.h
      migration: Move migration.h to migration/

Peter Xu (1):
      migration: isolate return path on src

 hw/i386/pc_piix.c                            |   3 +-
 hw/net/virtio-net.c                          |   1 +
 hw/net/vmxnet3.c                             |   1 +
 hw/ppc/spapr.c                               |   4 +-
 hw/s390x/s390-skeys.c                        |   1 +
 hw/s390x/s390-virtio-ccw.c                   |   1 +
 hw/xen/xen-common.c                          |   3 +-
 include/migration/global_state.h             |  25 +++
 include/migration/misc.h                     |  26 +++
 include/migration/register.h                 |  56 +++++++
 include/migration/vmstate.h                  |  50 ------
 migration/Makefile.objs                      |   2 +-
 migration/block.c                            |   3 +-
 migration/channel.c                          |   7 +-
 migration/channel.h                          |   3 +-
 migration/colo-comm.c                        |   2 +-
 migration/colo.c                             |   2 +-
 migration/exec.c                             |   4 +-
 migration/fd.c                               |   4 +-
 migration/global_state.c                     | 140 +++++++++++++++++
 migration/migration.c                        | 226 ++++++---------------------
 {include/migration => migration}/migration.h |  65 --------
 migration/postcopy-ram.c                     |   2 +-
 migration/qemu-file.c                        |   2 +-
 migration/qemu-file.h                        |  17 ++
 migration/ram.c                              |   3 +-
 migration/rdma.c                             |   2 +-
 migration/savevm.c                           |   5 +-
 migration/savevm.h                           |  15 ++
 migration/socket.c                           |   5 +-
 migration/tls.c                              |   4 +-
 migration/trace-events                       |   4 +-
 migration/vmstate-types.c                    |   2 +-
 migration/vmstate.c                          |   3 +-
 qdev-monitor.c                               |   2 +-
 slirp/slirp.c                                |   1 +
 tests/test-vmstate.c                         |   3 +-
 ui/spice-core.c                              |   2 +-
 vl.c                                         |   2 +-
 39 files changed, 380 insertions(+), 323 deletions(-)
 create mode 100644 include/migration/global_state.h
 create mode 100644 include/migration/register.h
 create mode 100644 migration/global_state.c
 rename {include/migration => migration}/migration.h (63%)

             reply	other threads:[~2017-06-13  9:51 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-13  9:51 Juan Quintela [this message]
2017-06-13  9:51 ` [Qemu-devel] [PULL 01/14] migration: isolate return path on src Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 02/14] migration: Don't try to set *errp directly Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 03/14] ram: Print block stats also in the complete case Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 04/14] ram: Now POSTCOPY_ACTIVE is the same that STATUS_ACTIVE Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 05/14] migration: Remove MigrationState from migration_channel_incomming() Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 06/14] migration: Move self_announce_delay() to misc.h Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 07/14] migration: Split registration functions from vmstate.h Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 08/14] migration: Move dump_vmsate_json_to_file() to misc.h Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 09/14] migration: Move constants to savevm.h Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 10/14] migration: Commands are only used inside migration.c Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 11/14] migration: ram_control_* are implemented in qemu_file Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 12/14] migration: create global_state.c Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 13/14] migration: Move remaining exported functions to migration/misc.h Juan Quintela
2017-06-13  9:51 ` [Qemu-devel] [PULL 14/14] migration: Move migration.h to migration/ Juan Quintela
2017-06-13 13:40 ` [Qemu-devel] [PULL 00/14] Migration PULL request Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2018-01-03  9:38 [Qemu-devel] [PULL 00/14] Migration pull request Juan Quintela
2018-01-05  0:30 ` Eric Blake
2018-01-05  9:29   ` Dr. David Alan Gilbert
2018-01-05  9:59   ` Juan Quintela
2018-01-09 18:24     ` Peter Maydell
2018-01-09 18:28       ` Juan Quintela
2018-01-10  4:58     ` Alexey Perevalov
2018-01-11 11:51 ` Peter Maydell
2015-11-19 11:20 Juan Quintela
2015-11-19 13:12 ` Peter Maydell
2015-11-19 13:21   ` Peter Maydell
2015-11-19 14:44     ` Peter Maydell
2015-11-19 15:03       ` Peter Maydell
2015-11-19 15:16         ` Dr. David Alan Gilbert
2015-11-20  8:03           ` Peter Lieven
2015-11-20  9:38           ` Peter Lieven
2015-11-20 11:33             ` Peter Maydell
2015-11-20 13:44               ` Peter Lieven
2015-11-20 13:53                 ` Kevin Wolf
2015-11-20 14:00                   ` Peter Lieven
2015-11-20 14:15                     ` Kevin Wolf
2015-11-19 17:32         ` John Snow
2015-11-19 15:56 ` Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170613095120.11373-1-quintela@redhat.com \
    --to=quintela@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).