mbox

[PULL,00/11] Migration next

Message ID 1343844079-2949-1-git-send-email-quintela@redhat.com
State New
Headers show

Pull-request

http://repo.or.cz/r/qemu/quintela.git migration-next-20120801

Message

Juan Quintela Aug. 1, 2012, 6:01 p.m. UTC
Hi

Here is the xbzrle pull request.  All comments about QMP names addressed.

Please, pull

The following changes since commit 02d2bd5d57812154cfb978bc2098cf49d551583d:

  Replace 'struct siginfo' with 'siginfo_t'. (2012-08-01 08:54:07 -0500)

are available in the git repository at:

  http://repo.or.cz/r/qemu/quintela.git migration-next-20120801

for you to fetch changes up to 7bff472b8fba64b7417c243d2132422afc0c2137:

  Restart optimization on stage3 update version (2012-08-01 19:56:57 +0200)



Juan Quintela (1):
  Restart optimization on stage3 update version

Orit Wasserman (10):
  Add migration capabilities
  Add migrate-set-capabilities and query-migrate-capabilities
  Add XBZRLE documentation
  Add cache handling functions
  Add uleb encoding/decoding functions
  Add xbzrle_encode_buffer and xbzrle_decode_buffer functions
  Add XBZRLE to ram_save_block and ram_save_live
  Add migrate_set_cachesize command
  Add migration accounting for normal and duplicate pages
  Add XBZRLE statistics

 Makefile.objs             |   1 +
 arch_init.c               | 246 +++++++++++++++++++++++++++++++++++++++++++++-
 cutils.c                  |  42 ++++++++
 docs/xbzrle.txt           | 136 +++++++++++++++++++++++++
 hmp-commands.hx           |  40 ++++++++
 hmp.c                     | 124 +++++++++++++++++++++++
 hmp.h                     |   5 +
 include/qemu/page_cache.h |  79 +++++++++++++++
 migration.c               | 124 +++++++++++++++++++++++
 migration.h               |  21 ++++
 monitor.c                 |  21 ++++
 page_cache.c              | 218 ++++++++++++++++++++++++++++++++++++++++
 qapi-schema.json          | 137 +++++++++++++++++++++++++-
 qemu-common.h             |  21 ++++
 qmp-commands.hx           | 180 ++++++++++++++++++++++++++++++++-
 savevm.c                  | 159 ++++++++++++++++++++++++++++++
 16 files changed, 1542 insertions(+), 12 deletions(-)
 create mode 100644 docs/xbzrle.txt
 create mode 100644 include/qemu/page_cache.h
 create mode 100644 page_cache.c

Comments

Anthony Liguori Aug. 2, 2012, 2:23 p.m. UTC | #1
On 08/01/2012 01:01 PM, Juan Quintela wrote:
> Hi
>
> Here is the xbzrle pull request.  All comments about QMP names addressed.
>
> Please, pull
>
> The following changes since commit 02d2bd5d57812154cfb978bc2098cf49d551583d:
>
>    Replace 'struct siginfo' with 'siginfo_t'. (2012-08-01 08:54:07 -0500)
>
> are available in the git repository at:
>
>    http://repo.or.cz/r/qemu/quintela.git migration-next-20120801
>
> for you to fetch changes up to 7bff472b8fba64b7417c243d2132422afc0c2137:
>
>    Restart optimization on stage3 update version (2012-08-01 19:56:57 +0200)

This pull request is premature as there's a v9 that went out after your pull 
request (and got review feedback).

Please wait until the patches actually collect some Reviewed-by's on the list 
before submitting a pull request.

Regards,

Anthony Liguori

>
>
>
> Juan Quintela (1):
>    Restart optimization on stage3 update version
>
> Orit Wasserman (10):
>    Add migration capabilities
>    Add migrate-set-capabilities and query-migrate-capabilities
>    Add XBZRLE documentation
>    Add cache handling functions
>    Add uleb encoding/decoding functions
>    Add xbzrle_encode_buffer and xbzrle_decode_buffer functions
>    Add XBZRLE to ram_save_block and ram_save_live
>    Add migrate_set_cachesize command
>    Add migration accounting for normal and duplicate pages
>    Add XBZRLE statistics
>
>   Makefile.objs             |   1 +
>   arch_init.c               | 246 +++++++++++++++++++++++++++++++++++++++++++++-
>   cutils.c                  |  42 ++++++++
>   docs/xbzrle.txt           | 136 +++++++++++++++++++++++++
>   hmp-commands.hx           |  40 ++++++++
>   hmp.c                     | 124 +++++++++++++++++++++++
>   hmp.h                     |   5 +
>   include/qemu/page_cache.h |  79 +++++++++++++++
>   migration.c               | 124 +++++++++++++++++++++++
>   migration.h               |  21 ++++
>   monitor.c                 |  21 ++++
>   page_cache.c              | 218 ++++++++++++++++++++++++++++++++++++++++
>   qapi-schema.json          | 137 +++++++++++++++++++++++++-
>   qemu-common.h             |  21 ++++
>   qmp-commands.hx           | 180 ++++++++++++++++++++++++++++++++-
>   savevm.c                  | 159 ++++++++++++++++++++++++++++++
>   16 files changed, 1542 insertions(+), 12 deletions(-)
>   create mode 100644 docs/xbzrle.txt
>   create mode 100644 include/qemu/page_cache.h
>   create mode 100644 page_cache.c
>