All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/11] Migration next v6
@ 2012-07-25 14:50 Orit Wasserman
  2012-07-25 14:50 ` Orit Wasserman
                   ` (11 more replies)
  0 siblings, 12 replies; 33+ messages in thread
From: Orit Wasserman @ 2012-07-25 14:50 UTC (permalink / raw)
  To: qemu-devel
  Cc: peter.maydell, aliguori, quintela, stefanha, mdroth, lcapitulino,
	blauwirbel, Orit Wasserman, chegu_vinod, avi, pbonzini, eblake

Those are the latest XBZRLE patches (part of the migration next branch).

changes from v5:
Add query-migrate-parameters that display the migration parameters
(currently only capabilities I will add the other parameters separately).
Remove capabilities from query-migrate.

Please review.

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

Orit Wasserman (10):
  Add migration capabilities
  Add migrate_set_parameter and query-migrate-parameters
  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               |  263 +++++++++++++++++++++++++++++++++++++++++++-
 cutils.c                  |   42 +++++++
 docs/xbzrle.txt           |  136 +++++++++++++++++++++++
 hmp-commands.hx           |   38 +++++++
 hmp.c                     |  124 +++++++++++++++++++++
 hmp.h                     |    4 +
 include/qemu/page_cache.h |   79 ++++++++++++++
 migration.c               |  123 +++++++++++++++++++++-
 migration.h               |   21 ++++
 monitor.c                 |   14 +++
 page_cache.c              |  216 +++++++++++++++++++++++++++++++++++++
 qapi-schema.json          |  121 ++++++++++++++++++++-
 qemu-common.h             |   21 ++++
 qmp-commands.hx           |  141 ++++++++++++++++++++++++-
 savevm.c                  |  159 +++++++++++++++++++++++++++
 16 files changed, 1490 insertions(+), 13 deletions(-)
 create mode 100644 docs/xbzrle.txt
 create mode 100644 include/qemu/page_cache.h
 create mode 100644 page_cache.c

-- 
1.7.7.6

^ permalink raw reply	[flat|nested] 33+ messages in thread
* [Qemu-devel] [PATCH 00/11] Migration next v10
@ 2012-08-05  9:13 Orit Wasserman
  2012-08-05  9:13 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
  0 siblings, 1 reply; 33+ messages in thread
From: Orit Wasserman @ 2012-08-05  9:13 UTC (permalink / raw)
  To: qemu-devel
  Cc: peter.maydell, aliguori, quintela, stefanha, mdroth, lcapitulino,
	blauwirbel, Orit Wasserman, chegu_vinod, avi, pbonzini, eblake

Changes from v9:
rename query-migrtion-supported-capabilities to query-migrate-supported-capabilities
rename 'info migration_supported_capabilities' to 'info migrate_supported_capabilities'
renamse migrate_set_cachesize to migrate_set_cache_size.
Add missing state to qmp_query_migrate_supported_capabilities.
remove unused MigrationParameters.
fix query-migrate examples.
fix other comments by Luiz and Eric.

Changes from v8:
remove xbzrle from xbzrle-cache fields name.
fix other review comments by Eric

Changes from v7:
rename migrate-set-parameter to migrate-set-capabilities
rename query-migrate-parameters to query-migrate-capabilities
renamse query-migration-capabilities to query-migration-supported-capabilities
fix query_migration_supported_capabilties to return a list
add query-migrate-cache-size commands
fix other review comment by Luiz and Eric

Changes from v6:
fix memory leak in cache_init.
using size_t for cache_get_cache_pos.
fix qapi-schema.json comments.
fix other comments by Eric Blake.

changes from v5:
Add query-migrate-parameters that display the migration parameters
(currently only capabilities I will add the other parameters separately).
Remove capabilities from query-migrate.

patches are based on git://repo.or.cz/qemu/quintela.git Migration-next-v5 branch

Please review

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_cache_size 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               |  125 +++++++++++++++++++++++
 migration.h               |   21 ++++
 monitor.c                 |   21 ++++
 page_cache.c              |  218 +++++++++++++++++++++++++++++++++++++++
 qapi-schema.json          |  126 ++++++++++++++++++++++-
 qemu-common.h             |   21 ++++
 qmp-commands.hx           |  176 +++++++++++++++++++++++++++++++-
 savevm.c                  |  159 +++++++++++++++++++++++++++++
 16 files changed, 1528 insertions(+), 12 deletions(-)
 create mode 100644 docs/xbzrle.txt
 create mode 100644 include/qemu/page_cache.h
 create mode 100644 page_cache.c

-- 
1.7.7.6

^ permalink raw reply	[flat|nested] 33+ messages in thread
* [Qemu-devel] [PATCH 00/11] Migration next v9
@ 2012-08-02 12:44 Orit Wasserman
  2012-08-02 12:44 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
  0 siblings, 1 reply; 33+ messages in thread
From: Orit Wasserman @ 2012-08-02 12:44 UTC (permalink / raw)
  To: qemu-devel
  Cc: peter.maydell, aliguori, quintela, stefanha, mdroth, lcapitulino,
	blauwirbel, Orit Wasserman, chegu_vinod, avi, pbonzini, eblake

Changes from v8:
remove xbzrle from xbzrle-cache fields name.
fix other review comments by Eric

Changes from v7:
rename migrate-set-parameter to migrate-set-capabilities
rename query-migrate-parameters to query-migrate-capabilities
renamse query-migration-capabilities to query-migration-supported-capabilities
fix query_migration_supported_capabilties to return a list
add query-migrate-cache-size commands
fix other review comment by Luiz and Eric

Changes from v6:
fix memory leak in cache_init.
using size_t for cache_get_cache_pos.
fix qapi-schema.json comments.
fix other comments by Eric Blake.

changes from v5:
Add query-migrate-parameters that display the migration parameters
(currently only capabilities I will add the other parameters separately).
Remove capabilities from query-migrate.

Please review

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           |  176 +++++++++++++++++++++++++++++++-
 savevm.c                  |  159 +++++++++++++++++++++++++++++
 16 files changed, 1538 insertions(+), 12 deletions(-)
 create mode 100644 docs/xbzrle.txt
 create mode 100644 include/qemu/page_cache.h
 create mode 100644 page_cache.c

-- 
1.7.7.6

^ permalink raw reply	[flat|nested] 33+ messages in thread
* [Qemu-devel] [PULL 00/11] Migration next
@ 2012-08-01 18:01 Juan Quintela
  2012-08-01 18:01 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Juan Quintela
  0 siblings, 1 reply; 33+ messages in thread
From: Juan Quintela @ 2012-08-01 18:01 UTC (permalink / raw)
  To: qemu-devel

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

-- 
1.7.11.2

^ permalink raw reply	[flat|nested] 33+ messages in thread
* [Qemu-devel] [PATCH 00/11] Migration next v8
@ 2012-07-31 18:54 Orit Wasserman
  2012-07-31 18:54 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
  0 siblings, 1 reply; 33+ messages in thread
From: Orit Wasserman @ 2012-07-31 18:54 UTC (permalink / raw)
  To: qemu-devel
  Cc: peter.maydell, aliguori, quintela, stefanha, mdroth, lcapitulino,
	blauwirbel, Orit Wasserman, chegu_vinod, avi, pbonzini, eblake

Changes from v7:
rename migrate-set-parameter to migrate-set-capabilities
rename query-migrate-parameters to query-migrate-capabilities
renamse query-migration-capabilities to query-migration-supported-capabilities
fix query_migration_supported_capabilties to return a list
add query-migrate-cache-size commands
fix other review comment by Luiz and Eric

Changes from v6:
fix memory leak in cache_init.
using size_t for cache_get_cache_pos.
fix qapi-schema.json comments.
fix other comments by Eric Blake.

changes from v5:
Add query-migrate-parameters that display the migration parameters
(currently only capabilities I will add the other parameters separately).
Remove capabilities from query-migrate.

Please review

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

Orit Wasserman (10):
  Add migration capabilities
  Add migrate_set_parameter and query-migrate-parameters
  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               |  119 ++++++++++++++++++++++
 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, 1537 insertions(+), 12 deletions(-)
 create mode 100644 docs/xbzrle.txt
 create mode 100644 include/qemu/page_cache.h
 create mode 100644 page_cache.c

-- 
1.7.7.6

^ permalink raw reply	[flat|nested] 33+ messages in thread
* [Qemu-devel] [PATCH 00/11]  Migration next v7
@ 2012-07-29  9:42 Orit Wasserman
  2012-07-29  9:42 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
  0 siblings, 1 reply; 33+ messages in thread
From: Orit Wasserman @ 2012-07-29  9:42 UTC (permalink / raw)
  To: qemu-devel
  Cc: peter.maydell, aliguori, quintela, stefanha, mdroth, lcapitulino,
	blauwirbel, Orit Wasserman, chegu_vinod, avi, pbonzini, eblake

Those are the latest XBZRLE patches (part of the migration next branch).

changes from v6:
fix memory leak in cache_init.
using size_t for cache_get_cache_pos.
fix qapi-schema.json comments.
fix other comments by Eric Blake.

changes from v5:
Add query-migrate-parameters that display the migration parameters
(currently only capabilities I will add the other parameters separately).
Remove capabilities from query-migrate.

Please review

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

Orit Wasserman (10):
  Add migration capabilities
  Add migrate_set_parameter and query-migrate-parameters
  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           |   38 +++++++
 hmp.c                     |  124 +++++++++++++++++++++++
 hmp.h                     |    4 +
 include/qemu/page_cache.h |   79 +++++++++++++++
 migration.c               |  123 ++++++++++++++++++++++-
 migration.h               |   21 ++++
 monitor.c                 |   14 +++
 page_cache.c              |  218 +++++++++++++++++++++++++++++++++++++++
 qapi-schema.json          |  127 +++++++++++++++++++++++-
 qemu-common.h             |   21 ++++
 qmp-commands.hx           |  154 +++++++++++++++++++++++++++-
 savevm.c                  |  159 +++++++++++++++++++++++++++++
 16 files changed, 1494 insertions(+), 13 deletions(-)
 create mode 100644 docs/xbzrle.txt
 create mode 100644 include/qemu/page_cache.h
 create mode 100644 page_cache.c

-- 
1.7.7.6

^ permalink raw reply	[flat|nested] 33+ messages in thread
* [Qemu-devel] [PATCH 00/11] Migration next v5
@ 2012-07-24 18:19 Juan Quintela
  2012-07-24 18:19 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Juan Quintela
  0 siblings, 1 reply; 33+ messages in thread
From: Juan Quintela @ 2012-07-24 18:19 UTC (permalink / raw)
  To: qemu-devel

Hi

This series include back xbrle.  In addressed all the review comments
addressed by luiz.

Please, review.

Thanks, Juan.

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

Orit Wasserman (10):
  Add migration capabilities
  Add migrate_set_parameter command
  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               |  263 +++++++++++++++++++++++++++++++++++++++++++--
 cutils.c                  |   42 ++++++++
 docs/xbzrle.txt           |  136 +++++++++++++++++++++++
 hmp-commands.hx           |   36 +++++++
 hmp.c                     |   98 +++++++++++++++++
 hmp.h                     |    3 +
 include/qemu/page_cache.h |   79 ++++++++++++++
 migration.c               |  127 +++++++++++++++++++++-
 migration.h               |   21 ++++
 monitor.c                 |    7 ++
 page_cache.c              |  216 +++++++++++++++++++++++++++++++++++++
 qapi-schema.json          |  104 +++++++++++++++++-
 qemu-common.h             |   21 ++++
 qmp-commands.hx           |  127 +++++++++++++++++++++-
 savevm.c                  |  159 +++++++++++++++++++++++++++
 16 files changed, 1425 insertions(+), 15 deletions(-)
 create mode 100644 docs/xbzrle.txt
 create mode 100644 include/qemu/page_cache.h
 create mode 100644 page_cache.c

-- 
1.7.10.4

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

end of thread, other threads:[~2012-08-15 16:37 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-25 14:50 [Qemu-devel] [PATCH 00/11] Migration next v6 Orit Wasserman
2012-07-25 14:50 ` Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 01/11] Add migration capabilities Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 02/11] Add migrate_set_parameter and query-migrate-parameters Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 03/11] Add XBZRLE documentation Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 04/11] Add cache handling functions Orit Wasserman
2012-07-26 21:51   ` Eric Blake
2012-07-29  6:16     ` Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 05/11] Add uleb encoding/decoding functions Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
2012-07-26 21:58   ` Eric Blake
2012-08-15 16:22   ` Igor Mitsyanko
2012-08-15 16:36     ` Eric Blake
2012-07-25 14:50 ` [Qemu-devel] [PATCH 07/11] Add XBZRLE to ram_save_block and ram_save_live Orit Wasserman
2012-07-26 22:20   ` Eric Blake
2012-07-29  6:34     ` Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 08/11] Add migrate_set_cachesize command Orit Wasserman
2012-07-26 22:22   ` Eric Blake
2012-07-25 14:50 ` [Qemu-devel] [PATCH 09/11] Add migration accounting for normal and duplicate pages Orit Wasserman
2012-07-26 22:41   ` Eric Blake
2012-07-29  6:57     ` Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 10/11] Add XBZRLE statistics Orit Wasserman
2012-07-26 22:48   ` Eric Blake
2012-07-29  7:10     ` Orit Wasserman
2012-07-25 14:50 ` [Qemu-devel] [PATCH 11/11] Restart optimization on stage3 update version Orit Wasserman
2012-07-25 15:41   ` Vinod, Chegu
2012-07-26  5:03     ` Orit Wasserman
  -- strict thread matches above, loose matches on Subject: below --
2012-08-05  9:13 [Qemu-devel] [PATCH 00/11] Migration next v10 Orit Wasserman
2012-08-05  9:13 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
2012-08-02 12:44 [Qemu-devel] [PATCH 00/11] Migration next v9 Orit Wasserman
2012-08-02 12:44 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
2012-08-01 18:01 [Qemu-devel] [PULL 00/11] Migration next Juan Quintela
2012-08-01 18:01 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Juan Quintela
2012-07-31 18:54 [Qemu-devel] [PATCH 00/11] Migration next v8 Orit Wasserman
2012-07-31 18:54 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
2012-07-29  9:42 [Qemu-devel] [PATCH 00/11] Migration next v7 Orit Wasserman
2012-07-29  9:42 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Orit Wasserman
2012-07-24 18:19 [Qemu-devel] [PATCH 00/11] Migration next v5 Juan Quintela
2012-07-24 18:19 ` [Qemu-devel] [PATCH 06/11] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions Juan Quintela

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.