qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/15] migration pull request
@ 2015-05-06 17:49 Juan Quintela
  2015-05-06 17:49 ` [Qemu-devel] [PULL 01/15] docs: Add a doc about multiple thread compression Juan Quintela
                   ` (15 more replies)
  0 siblings, 16 replies; 24+ messages in thread
From: Juan Quintela @ 2015-05-06 17:49 UTC (permalink / raw)
  To: qemu-devel

Hi

This patch series got:

- migration compression patches by Liang Li
  I have to modify ""type" to "struct" in qapi
- division by zero fixed by Michael Champan.

Thanks, please apply.


The following changes since commit 38003aee196a96edccd4d64471beb1b67e9b2b17:

  Merge remote-tracking branch 'remotes/rth/tags/tcg-next-20150505' into staging (2015-05-06 11:16:35 +0100)

are available in the git repository at:

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

for you to fetch changes up to de6478785dc4e1e5835c91fb9e21d070c7ce3be9:

  migration: avoid divide by zero in xbzrle cache miss rate (2015-05-06 19:45:36 +0200)

----------------------------------------------------------------
migration/next for 20150506

----------------------------------------------------------------
Liang Li (14):
      docs: Add a doc about multiple thread compression
      migration: Add the framework of multi-thread compression
      migration: Add the framework of multi-thread decompression
      qemu-file: Add compression functions to QEMUFile
      arch_init: Alloc and free data struct for compression
      arch_init: Add and free data struct for decompression
      migration: Split save_zero_page from ram_save_page
      migration: Add the core code of multi-thread compression
      migration: Make compression co-work with xbzrle
      migration: Add the core code for decompression
      migration: Add interface to control compression
      migration: Use an array instead of 3 parameters
      migration: Add qmp commands to set and query parameters
      migration: Add hmp interface to set and query parameters

Michael Chapman (1):
      migration: avoid divide by zero in xbzrle cache miss rate

 arch_init.c                       | 514 ++++++++++++++++++++++++++++++++++++--
 docs/multi-thread-compression.txt | 149 +++++++++++
 hmp-commands.hx                   |  17 ++
 hmp.c                             |  65 +++++
 hmp.h                             |   4 +
 include/migration/migration.h     |  10 +
 include/migration/qemu-file.h     |   3 +
 migration/migration.c             | 122 +++++++++
 migration/qemu-file.c             |  39 +++
 monitor.c                         |  25 ++
 qapi-schema.json                  |  79 +++++-
 qmp-commands.hx                   |  57 +++++
 12 files changed, 1058 insertions(+), 26 deletions(-)
 create mode 100644 docs/multi-thread-compression.txt

^ permalink raw reply	[flat|nested] 24+ messages in thread
* [Qemu-devel] [PULL 00/15] Migration PULL request
@ 2017-06-01 19:23 Juan Quintela
  2017-06-02 14:19 ` Peter Maydell
  0 siblings, 1 reply; 24+ messages in thread
From: Juan Quintela @ 2017-06-01 19:23 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert, lvivier, peterx

Hi
	This pull requset includes:
	- fd leaks for return patch (peter)
	- remove loadvm_handlers
	- cleanup of include files for migration

Please, apply.

Thanks, Juan.


The following changes since commit c077a998eb3fcae2d048e3baeb5bc592d30fddde:

  Merge remote-tracking branch 'remotes/riku/tags/pull-linux-user-20170531' into staging (2017-06-01 15:50:40 +0100)

are available in the git repository at:

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

for you to fetch changes up to 2c9e6fec89ff032a3f75a5a1caccc31901fb4056:

  migration: Move include/migration/block.h into migration/ (2017-06-01 18:49:24 +0200)

----------------------------------------------------------------
migration/next for 20170601

----------------------------------------------------------------
Juan Quintela (13):
      migration: Use savevm_handlers instead of loadvm copy
      migration: loadvm handlers are not used
      migration: Remove section_id parameter from vmstate_load
      migration: Remove unneeded includes of migration/vmstate.h
      migration: Split qemu-file.h
      migration: Export exec.c functions in its own file
      migration: Export fd.c functions in its own file
      migration: Export socket.c functions in its own file
      migration: Export tls.c functions in its own file
      migration: Export rdma.c functions in its own file
      migration: Create include for migration snapshots
      migration: Export ram.c functions in its own file
      migration: Move include/migration/block.h into migration/

Peter Xu (2):
      migration: fix leak of src file on dst
      migration: shut src return path unconditionally

 hmp.c                                        |   5 +-
 hw/core/qdev.c                               |   1 -
 hw/i2c/i2c-ddc.c                             |   1 +
 hw/intc/s390_flic.c                          |   1 -
 hw/intc/s390_flic_kvm.c                      |   1 -
 hw/s390x/s390-skeys.c                        |   1 -
 include/block/block_int.h                    |   4 +-
 include/hw/acpi/memory_hotplug.h             |   1 -
 include/hw/acpi/pcihp.h                      |   1 -
 include/hw/hw.h                              |   2 +-
 include/hw/pci/shpc.h                        |   1 -
 include/migration/migration.h                |  73 ------------
 include/migration/misc.h                     |  29 +++++
 include/migration/qemu-file-types.h          | 164 +++++++++++++++++++++++++++
 include/migration/snapshot.h                 |  21 ++++
 include/migration/vmstate.h                  |   2 -
 include/qemu/typedefs.h                      |   1 -
 include/sysemu/sysemu.h                      |   3 -
 migration/block.c                            |   5 +-
 {include/migration => migration}/block.h     |   2 -
 migration/channel.c                          |   1 +
 migration/colo.c                             |   4 +-
 migration/exec.c                             |   1 +
 migration/exec.h                             |  26 +++++
 migration/fd.c                               |   1 +
 migration/fd.h                               |  23 ++++
 migration/migration.c                        |  25 +++-
 migration/postcopy-ram.c                     |   4 +-
 migration/qemu-file-channel.c                |   3 +-
 migration/qemu-file.c                        |   2 +-
 {include/migration => migration}/qemu-file.h | 157 +------------------------
 migration/ram.c                              |   4 +-
 migration/ram.h                              |  70 ++++++++++++
 migration/rdma.c                             |   5 +-
 migration/rdma.h                             |  25 ++++
 migration/savevm.c                           |  71 +++++-------
 migration/socket.c                           |   3 +-
 migration/socket.h                           |  28 +++++
 migration/tls.c                              |   1 +
 migration/tls.h                              |  34 ++++++
 migration/vmstate-types.c                    |   3 +-
 migration/vmstate.c                          |   2 +-
 replay/replay-snapshot.c                     |   5 +-
 target/alpha/cpu.c                           |   1 -
 target/hppa/cpu.c                            |   1 -
 target/s390x/cpu.c                           |   1 -
 target/tilegx/cpu.c                          |   1 -
 tests/test-vmstate.c                         |   3 +-
 vl.c                                         |   5 +-
 49 files changed, 510 insertions(+), 319 deletions(-)
 create mode 100644 include/migration/misc.h
 create mode 100644 include/migration/qemu-file-types.h
 create mode 100644 include/migration/snapshot.h
 rename {include/migration => migration}/block.h (93%)
 create mode 100644 migration/exec.h
 create mode 100644 migration/fd.h
 rename {include/migration => migration}/qemu-file.h (62%)
 create mode 100644 migration/ram.h
 create mode 100644 migration/rdma.h
 create mode 100644 migration/socket.h
 create mode 100644 migration/tls.h

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

end of thread, other threads:[~2017-06-02 14:19 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-06 17:49 [Qemu-devel] [PULL 00/15] migration pull request Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 01/15] docs: Add a doc about multiple thread compression Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 02/15] migration: Add the framework of multi-thread compression Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 03/15] migration: Add the framework of multi-thread decompression Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 04/15] qemu-file: Add compression functions to QEMUFile Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 05/15] arch_init: Alloc and free data struct for compression Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 06/15] arch_init: Add and free data struct for decompression Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 07/15] migration: Split save_zero_page from ram_save_page Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 08/15] migration: Add the core code of multi-thread compression Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 09/15] migration: Make compression co-work with xbzrle Juan Quintela
2015-05-06 17:49 ` [Qemu-devel] [PULL 10/15] migration: Add the core code for decompression Juan Quintela
2015-05-06 17:50 ` [Qemu-devel] [PULL 11/15] migration: Add interface to control compression Juan Quintela
2015-05-06 19:09   ` Eric Blake
2015-05-06 17:50 ` [Qemu-devel] [PULL 12/15] migration: Use an array instead of 3 parameters Juan Quintela
2015-05-06 19:09   ` Eric Blake
2015-05-06 17:50 ` [Qemu-devel] [PULL 13/15] migration: Add qmp commands to set and query parameters Juan Quintela
2015-05-06 19:10   ` Eric Blake
2015-05-06 17:50 ` [Qemu-devel] [PULL 14/15] migration: Add hmp interface " Juan Quintela
2015-05-06 17:50 ` [Qemu-devel] [PULL 15/15] migration: avoid divide by zero in xbzrle cache miss rate Juan Quintela
2015-05-06 18:37 ` [Qemu-devel] [PULL 00/15] migration pull request Peter Maydell
2015-05-06 19:11   ` Eric Blake
2015-05-07 11:37     ` Juan Quintela
  -- strict thread matches above, loose matches on Subject: below --
2017-06-01 19:23 [Qemu-devel] [PULL 00/15] Migration PULL request Juan Quintela
2017-06-02 14:19 ` Peter Maydell

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