qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/65] Migration pull request
@ 2017-04-21 11:55 Juan Quintela
  2017-04-21 11:55 ` [Qemu-devel] [PULL 01/65] ram: Update all functions comments Juan Quintela
                   ` (65 more replies)
  0 siblings, 66 replies; 67+ messages in thread
From: Juan Quintela @ 2017-04-21 11:55 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert

Hi

This pull includes:

- fixes from (peter xu)
- page-size parameter for info migrate (chao)
- Fix for virtio-rng migration with postcopy (laurent)
- RAMState series cleanup (me)

Please apply.


The following changes since commit fa54abb8c298f892639ffc4bc2f61448ac3be4a1:

  Drop QEMU_GNUC_PREREQ() checks for gcc older than 4.1 (2017-04-20 18:33:33 +0100)

are available in the git repository at:

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

for you to fetch changes up to 2c02468c9b1750aaa5fbeee49cdb55f101608c6a:

  hmp: info migrate_parameters format tunes (2017-04-21 12:25:41 +0200)

----------------------------------------------------------------
migration/next for 20170421

----------------------------------------------------------------
Chao Fan (1):
      ram: Add page-size to output in 'info migrate'

Juan Quintela (58):
      ram: Update all functions comments
      ram: Rename flush_page_queue() to migration_page_queue_free()
      ram: Rename block_name to rbname
      ram: Create RAMState
      ram: Add dirty_rate_high_cnt to RAMState
      ram: Move bitmap_sync_count into RAMState
      ram: Move start time into RAMState
      ram: Move bytes_xfer_prev into RAMState
      ram: Change byte_xfer_{prev,now} type to uint64_t
      ram: Move num_dirty_pages_period into RAMState
      ram: Change num_dirty_pages_period type to uint64_t
      ram: Move xbzrle_cache_miss_prev into RAMState
      ram: Move iterations_prev into RAMState
      ram: Move dup_pages into RAMState
      ram: Remove unused dup_mig_bytes_transferred()
      ram: Remove unused pages_skipped variable
      ram: Move norm_pages to RAMState
      ram: Remove norm_mig_bytes_transferred
      ram: Move iterations into RAMState
      ram: Move xbzrle_bytes into RAMState
      ram: Move xbzrle_pages into RAMState
      ram: Move xbzrle_cache_miss into RAMState
      ram: Move xbzrle_cache_miss_rate into RAMState
      ram: Move xbzrle_overflows into RAMState
      ram: Move migration_dirty_pages to RAMState
      ram: Everything was init to zero, so use memset
      ram: Move migration_bitmap_mutex into RAMState
      ram: Move migration_bitmap_rcu into RAMState
      ram: Move bytes_transferred into RAMState
      ram: Use the RAMState bytes_transferred parameter
      ram: Remove ram_save_remaining
      ram: Move last_req_rb to RAMState
      ram: Move src_page_req* to RAMState
      ram: Create ram_dirty_sync_count()
      ram: Remove dirty_bytes_rate
      ram: Move dirty_pages_rate to RAMState
      ram: Move postcopy_requests into RAMState
      ram: Add QEMUFile to RAMState
      ram: Move QEMUFile into RAMState
      ram: Remove compression_switch and inline its logic
      migration: Remove MigrationState from migration_in_postcopy
      ram: We don't need MigrationState parameter anymore
      ram: Rename qemu_target_page_bits() to qemu_target_page_size()
      ram: Pass RAMBlock to bitmap_sync
      ram: ram_discard_range() don't use the mis parameter
      ram: reorganize last_sent_block
      ram: Use page number instead of an address for the bitmap operations
      ram: Remember last_page instead of last_offset
      ram: Change offset field in PageSearchStatus to page
      ram: Use ramblock and page offset instead of absolute offset
      ram: rename last_ram_offset() last_ram_pages()
      ram: Use RAMBitmap type for coherence
      migration: Remove MigrationState parameter from migration_is_idle()
      qdev: qdev_hotplug is really a bool
      qdev: Export qdev_hot_removed
      qdev: Move qdev_unplug() to qdev-monitor.c
      migration: Disable hotplug/unplug during migration
      ram: Remove migration_bitmap_extend()

Laurent Vivier (2):
      migration: don't close a file descriptor while it can be in use
      virtio-rng: stop virtqueue while the CPU is stopped

Peter Xu (4):
      migration: set current_active_state once
      migration: rename max_size to threshold_size
      hmp: info migrate_capability format tunes
      hmp: info migrate_parameters format tunes

 exec.c                         |   11 +-
 hmp.c                          |   29 +-
 hw/core/qdev.c                 |   40 +-
 hw/virtio/trace-events         |    3 +
 hw/virtio/virtio-rng.c         |   29 +-
 include/exec/ram_addr.h        |    8 +-
 include/hw/qdev-core.h         |    3 +-
 include/hw/virtio/virtio-rng.h |    2 +
 include/migration/migration.h  |   41 +-
 include/migration/vmstate.h    |    3 +-
 include/sysemu/sysemu.h        |    2 +-
 migration/migration.c          |   82 +--
 migration/postcopy-ram.c       |   14 +-
 migration/ram.c                | 1210 +++++++++++++++++++++-------------------
 migration/savevm.c             |   19 +-
 migration/trace-events         |    4 +-
 qapi-schema.json               |    5 +-
 qdev-monitor.c                 |   45 ++
 18 files changed, 805 insertions(+), 745 deletions(-)

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

end of thread, other threads:[~2017-04-21 16:10 UTC | newest]

Thread overview: 67+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-21 11:55 [Qemu-devel] [PULL 00/65] Migration pull request Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 01/65] ram: Update all functions comments Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 02/65] ram: Rename flush_page_queue() to migration_page_queue_free() Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 03/65] ram: Rename block_name to rbname Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 04/65] ram: Create RAMState Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 05/65] ram: Add dirty_rate_high_cnt to RAMState Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 06/65] ram: Move bitmap_sync_count into RAMState Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 07/65] ram: Move start time " Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 08/65] ram: Move bytes_xfer_prev " Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 09/65] ram: Change byte_xfer_{prev, now} type to uint64_t Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 10/65] ram: Move num_dirty_pages_period into RAMState Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 11/65] ram: Change num_dirty_pages_period type to uint64_t Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 12/65] ram: Move xbzrle_cache_miss_prev into RAMState Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 13/65] ram: Move iterations_prev " Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 14/65] ram: Move dup_pages " Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 15/65] ram: Remove unused dup_mig_bytes_transferred() Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 16/65] ram: Remove unused pages_skipped variable Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 17/65] ram: Move norm_pages to RAMState Juan Quintela
2017-04-21 11:55 ` [Qemu-devel] [PULL 18/65] ram: Remove norm_mig_bytes_transferred Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 19/65] ram: Move iterations into RAMState Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 20/65] ram: Move xbzrle_bytes " Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 21/65] ram: Move xbzrle_pages " Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 22/65] ram: Move xbzrle_cache_miss " Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 23/65] ram: Move xbzrle_cache_miss_rate " Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 24/65] ram: Move xbzrle_overflows " Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 25/65] ram: Move migration_dirty_pages to RAMState Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 26/65] ram: Everything was init to zero, so use memset Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 27/65] ram: Move migration_bitmap_mutex into RAMState Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 28/65] ram: Move migration_bitmap_rcu " Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 29/65] ram: Move bytes_transferred " Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 30/65] ram: Use the RAMState bytes_transferred parameter Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 31/65] ram: Remove ram_save_remaining Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 32/65] ram: Move last_req_rb to RAMState Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 33/65] ram: Move src_page_req* " Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 34/65] ram: Create ram_dirty_sync_count() Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 35/65] ram: Remove dirty_bytes_rate Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 36/65] ram: Move dirty_pages_rate to RAMState Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 37/65] ram: Move postcopy_requests into RAMState Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 38/65] ram: Add QEMUFile to RAMState Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 39/65] ram: Move QEMUFile into RAMState Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 40/65] ram: Remove compression_switch and inline its logic Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 41/65] migration: Remove MigrationState from migration_in_postcopy Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 42/65] ram: We don't need MigrationState parameter anymore Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 43/65] ram: Rename qemu_target_page_bits() to qemu_target_page_size() Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 44/65] ram: Add page-size to output in 'info migrate' Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 45/65] ram: Pass RAMBlock to bitmap_sync Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 46/65] ram: ram_discard_range() don't use the mis parameter Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 47/65] ram: reorganize last_sent_block Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 48/65] ram: Use page number instead of an address for the bitmap operations Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 49/65] ram: Remember last_page instead of last_offset Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 50/65] ram: Change offset field in PageSearchStatus to page Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 51/65] ram: Use ramblock and page offset instead of absolute offset Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 52/65] ram: rename last_ram_offset() last_ram_pages() Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 53/65] ram: Use RAMBitmap type for coherence Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 54/65] migration: Remove MigrationState parameter from migration_is_idle() Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 55/65] qdev: qdev_hotplug is really a bool Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 56/65] qdev: Export qdev_hot_removed Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 57/65] qdev: Move qdev_unplug() to qdev-monitor.c Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 58/65] migration: Disable hotplug/unplug during migration Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 59/65] ram: Remove migration_bitmap_extend() Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 60/65] migration: don't close a file descriptor while it can be in use Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 61/65] virtio-rng: stop virtqueue while the CPU is stopped Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 62/65] migration: set current_active_state once Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 63/65] migration: rename max_size to threshold_size Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 64/65] hmp: info migrate_capability format tunes Juan Quintela
2017-04-21 11:56 ` [Qemu-devel] [PULL 65/65] hmp: info migrate_parameters " Juan Quintela
2017-04-21 16:09 ` [Qemu-devel] [PULL 00/65] Migration pull request 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).