From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Juan Quintela <quintela@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 36/51] ram: Move QEMUFile into RAMState
Date: Fri, 31 Mar 2017 15:21:10 +0100 [thread overview]
Message-ID: <20170331142109.GG4514@work-vm> (raw)
In-Reply-To: <20170323204544.12015-37-quintela@redhat.com>
* Juan Quintela (quintela@redhat.com) wrote:
> We receive the file from save_live operations and we don't use it
> until 3 or 4 levels of calls down.
>
> Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
> migration/ram.c | 84 +++++++++++++++++++++++++--------------------------------
> 1 file changed, 37 insertions(+), 47 deletions(-)
>
> diff --git a/migration/ram.c b/migration/ram.c
> index 7667e73..6a39704 100644
> --- a/migration/ram.c
> +++ b/migration/ram.c
> @@ -756,21 +756,20 @@ static void migration_bitmap_sync(RAMState *rs)
> * Returns the number of pages written.
> *
> * @rs: current RAM state
> - * @f: QEMUFile where to send the data
> * @block: block that contains the page we want to send
> * @offset: offset inside the block for the page
> * @p: pointer to the page
> */
> -static int save_zero_page(RAMState *rs, QEMUFile *f, RAMBlock *block,
> - ram_addr_t offset, uint8_t *p)
> +static int save_zero_page(RAMState *rs, RAMBlock *block, ram_addr_t offset,
> + uint8_t *p)
> {
> int pages = -1;
>
> if (is_zero_range(p, TARGET_PAGE_SIZE)) {
> rs->zero_pages++;
> rs->bytes_transferred +=
> - save_page_header(f, block, offset | RAM_SAVE_FLAG_COMPRESS);
> - qemu_put_byte(f, 0);
> + save_page_header(rs->f, block, offset | RAM_SAVE_FLAG_COMPRESS);
> + qemu_put_byte(rs->f, 0);
> rs->bytes_transferred += 1;
> pages = 1;
> }
> @@ -798,12 +797,11 @@ static void ram_release_pages(MigrationState *ms, const char *rbname,
> *
> * @rs: current RAM state
> * @ms: current migration state
> - * @f: QEMUFile where to send the data
> * @block: block that contains the page we want to send
> * @offset: offset inside the block for the page
> * @last_stage: if we are at the completion stage
> */
> -static int ram_save_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
> +static int ram_save_page(RAMState *rs, MigrationState *ms,
> PageSearchStatus *pss, bool last_stage)
> {
> int pages = -1;
> @@ -819,7 +817,7 @@ static int ram_save_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
>
> /* In doubt sent page as normal */
> bytes_xmit = 0;
> - ret = ram_control_save_page(f, block->offset,
> + ret = ram_control_save_page(rs->f, block->offset,
> offset, TARGET_PAGE_SIZE, &bytes_xmit);
> if (bytes_xmit) {
> rs->bytes_transferred += bytes_xmit;
> @@ -842,7 +840,7 @@ static int ram_save_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
> }
> }
> } else {
> - pages = save_zero_page(rs, f, block, offset, p);
> + pages = save_zero_page(rs, block, offset, p);
> if (pages > 0) {
> /* Must let xbzrle know, otherwise a previous (now 0'd) cached
> * page would be stale
> @@ -864,14 +862,14 @@ static int ram_save_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
>
> /* XBZRLE overflow or normal page */
> if (pages == -1) {
> - rs->bytes_transferred += save_page_header(f, block,
> + rs->bytes_transferred += save_page_header(rs->f, block,
> offset | RAM_SAVE_FLAG_PAGE);
> if (send_async) {
> - qemu_put_buffer_async(f, p, TARGET_PAGE_SIZE,
> + qemu_put_buffer_async(rs->f, p, TARGET_PAGE_SIZE,
> migrate_release_ram() &
> migration_in_postcopy(ms));
> } else {
> - qemu_put_buffer(f, p, TARGET_PAGE_SIZE);
> + qemu_put_buffer(rs->f, p, TARGET_PAGE_SIZE);
> }
> rs->bytes_transferred += TARGET_PAGE_SIZE;
> pages = 1;
> @@ -906,7 +904,7 @@ static int do_compress_ram_page(QEMUFile *f, RAMBlock *block,
> return bytes_sent;
> }
>
> -static void flush_compressed_data(RAMState *rs, QEMUFile *f)
> +static void flush_compressed_data(RAMState *rs)
> {
> int idx, len, thread_count;
>
> @@ -926,7 +924,7 @@ static void flush_compressed_data(RAMState *rs, QEMUFile *f)
> for (idx = 0; idx < thread_count; idx++) {
> qemu_mutex_lock(&comp_param[idx].mutex);
> if (!comp_param[idx].quit) {
> - len = qemu_put_qemu_file(f, comp_param[idx].file);
> + len = qemu_put_qemu_file(rs->f, comp_param[idx].file);
> rs->bytes_transferred += len;
> }
> qemu_mutex_unlock(&comp_param[idx].mutex);
> @@ -940,8 +938,8 @@ static inline void set_compress_params(CompressParam *param, RAMBlock *block,
> param->offset = offset;
> }
>
> -static int compress_page_with_multi_thread(RAMState *rs, QEMUFile *f,
> - RAMBlock *block, ram_addr_t offset)
> +static int compress_page_with_multi_thread(RAMState *rs, RAMBlock *block,
> + ram_addr_t offset)
> {
> int idx, thread_count, bytes_xmit = -1, pages = -1;
>
> @@ -951,7 +949,7 @@ static int compress_page_with_multi_thread(RAMState *rs, QEMUFile *f,
> for (idx = 0; idx < thread_count; idx++) {
> if (comp_param[idx].done) {
> comp_param[idx].done = false;
> - bytes_xmit = qemu_put_qemu_file(f, comp_param[idx].file);
> + bytes_xmit = qemu_put_qemu_file(rs->f, comp_param[idx].file);
> qemu_mutex_lock(&comp_param[idx].mutex);
> set_compress_params(&comp_param[idx], block, offset);
> qemu_cond_signal(&comp_param[idx].cond);
> @@ -980,13 +978,11 @@ static int compress_page_with_multi_thread(RAMState *rs, QEMUFile *f,
> *
> * @rs: current RAM state
> * @ms: current migration state
> - * @f: QEMUFile where to send the data
> * @block: block that contains the page we want to send
> * @offset: offset inside the block for the page
> * @last_stage: if we are at the completion stage
> */
> static int ram_save_compressed_page(RAMState *rs, MigrationState *ms,
> - QEMUFile *f,
> PageSearchStatus *pss, bool last_stage)
> {
> int pages = -1;
> @@ -998,7 +994,7 @@ static int ram_save_compressed_page(RAMState *rs, MigrationState *ms,
>
> p = block->host + offset;
>
> - ret = ram_control_save_page(f, block->offset,
> + ret = ram_control_save_page(rs->f, block->offset,
> offset, TARGET_PAGE_SIZE, &bytes_xmit);
> if (bytes_xmit) {
> rs->bytes_transferred += bytes_xmit;
> @@ -1020,20 +1016,20 @@ static int ram_save_compressed_page(RAMState *rs, MigrationState *ms,
> * is used to avoid resending the block name.
> */
> if (block != rs->last_sent_block) {
> - flush_compressed_data(rs, f);
> - pages = save_zero_page(rs, f, block, offset, p);
> + flush_compressed_data(rs);
> + pages = save_zero_page(rs, block, offset, p);
> if (pages == -1) {
> /* Make sure the first page is sent out before other pages */
> - bytes_xmit = save_page_header(f, block, offset |
> + bytes_xmit = save_page_header(rs->f, block, offset |
> RAM_SAVE_FLAG_COMPRESS_PAGE);
> - blen = qemu_put_compression_data(f, p, TARGET_PAGE_SIZE,
> + blen = qemu_put_compression_data(rs->f, p, TARGET_PAGE_SIZE,
> migrate_compress_level());
> if (blen > 0) {
> rs->bytes_transferred += bytes_xmit + blen;
> rs->norm_pages++;
> pages = 1;
> } else {
> - qemu_file_set_error(f, blen);
> + qemu_file_set_error(rs->f, blen);
> error_report("compressed data failed!");
> }
> }
> @@ -1042,9 +1038,9 @@ static int ram_save_compressed_page(RAMState *rs, MigrationState *ms,
> }
> } else {
> offset |= RAM_SAVE_FLAG_CONTINUE;
> - pages = save_zero_page(rs, f, block, offset, p);
> + pages = save_zero_page(rs, block, offset, p);
> if (pages == -1) {
> - pages = compress_page_with_multi_thread(rs, f, block, offset);
> + pages = compress_page_with_multi_thread(rs, block, offset);
> } else {
> ram_release_pages(ms, block->idstr, pss->offset, pages);
> }
> @@ -1061,13 +1057,12 @@ static int ram_save_compressed_page(RAMState *rs, MigrationState *ms,
> * Returns if a page is found
> *
> * @rs: current RAM state
> - * @f: QEMUFile where to send the data
> * @pss: data about the state of the current dirty page scan
> * @again: set to false if the search has scanned the whole of RAM
> * @ram_addr_abs: pointer into which to store the address of the dirty page
> * within the global ram_addr space
> */
> -static bool find_dirty_block(RAMState *rs, QEMUFile *f, PageSearchStatus *pss,
> +static bool find_dirty_block(RAMState *rs, PageSearchStatus *pss,
> bool *again, ram_addr_t *ram_addr_abs)
> {
> pss->offset = migration_bitmap_find_dirty(rs, pss->block, pss->offset,
> @@ -1095,7 +1090,7 @@ static bool find_dirty_block(RAMState *rs, QEMUFile *f, PageSearchStatus *pss,
> /* If xbzrle is on, stop using the data compression at this
> * point. In theory, xbzrle can do better than compression.
> */
> - flush_compressed_data(rs, f);
> + flush_compressed_data(rs);
> compression_switch = false;
> }
> }
> @@ -1314,12 +1309,11 @@ err:
> *
> * @rs: current RAM state
> * @ms: current migration state
> - * @f: QEMUFile where to send the data
> * @pss: data about the page we want to send
> * @last_stage: if we are at the completion stage
> * @dirty_ram_abs: address of the start of the dirty page in ram_addr_t space
> */
> -static int ram_save_target_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
> +static int ram_save_target_page(RAMState *rs, MigrationState *ms,
> PageSearchStatus *pss,
> bool last_stage,
> ram_addr_t dirty_ram_abs)
> @@ -1330,9 +1324,9 @@ static int ram_save_target_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
> if (migration_bitmap_clear_dirty(rs, dirty_ram_abs)) {
> unsigned long *unsentmap;
> if (compression_switch && migrate_use_compression()) {
> - res = ram_save_compressed_page(rs, ms, f, pss, last_stage);
> + res = ram_save_compressed_page(rs, ms, pss, last_stage);
> } else {
> - res = ram_save_page(rs, ms, f, pss, last_stage);
> + res = ram_save_page(rs, ms, pss, last_stage);
> }
>
> if (res < 0) {
> @@ -1367,12 +1361,11 @@ static int ram_save_target_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
> *
> * @rs: current RAM state
> * @ms: current migration state
> - * @f: QEMUFile where to send the data
> * @pss: data about the page we want to send
> * @last_stage: if we are at the completion stage
> * @dirty_ram_abs: Address of the start of the dirty page in ram_addr_t space
> */
> -static int ram_save_host_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
> +static int ram_save_host_page(RAMState *rs, MigrationState *ms,
> PageSearchStatus *pss,
> bool last_stage,
> ram_addr_t dirty_ram_abs)
> @@ -1381,8 +1374,7 @@ static int ram_save_host_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
> size_t pagesize = qemu_ram_pagesize(pss->block);
>
> do {
> - tmppages = ram_save_target_page(rs, ms, f, pss, last_stage,
> - dirty_ram_abs);
> + tmppages = ram_save_target_page(rs, ms, pss, last_stage, dirty_ram_abs);
> if (tmppages < 0) {
> return tmppages;
> }
> @@ -1405,14 +1397,13 @@ static int ram_save_host_page(RAMState *rs, MigrationState *ms, QEMUFile *f,
> * Returns the number of pages written where zero means no dirty pages
> *
> * @rs: current RAM state
> - * @f: QEMUFile where to send the data
> * @last_stage: if we are at the completion stage
> *
> * On systems where host-page-size > target-page-size it will send all the
> * pages in a host page that are dirty.
> */
>
> -static int ram_find_and_save_block(RAMState *rs, QEMUFile *f, bool last_stage)
> +static int ram_find_and_save_block(RAMState *rs, bool last_stage)
> {
> PageSearchStatus pss;
> MigrationState *ms = migrate_get_current();
> @@ -1440,12 +1431,11 @@ static int ram_find_and_save_block(RAMState *rs, QEMUFile *f, bool last_stage)
>
> if (!found) {
> /* priority queue empty, so just search for something dirty */
> - found = find_dirty_block(rs, f, &pss, &again, &dirty_ram_abs);
> + found = find_dirty_block(rs, &pss, &again, &dirty_ram_abs);
> }
>
> if (found) {
> - pages = ram_save_host_page(rs, ms, f, &pss, last_stage,
> - dirty_ram_abs);
> + pages = ram_save_host_page(rs, ms, &pss, last_stage, dirty_ram_abs);
> }
> } while (!pages && again);
>
> @@ -2145,7 +2135,7 @@ static int ram_save_iterate(QEMUFile *f, void *opaque)
> while ((ret = qemu_file_rate_limit(f)) == 0) {
> int pages;
>
> - pages = ram_find_and_save_block(rs, f, false);
> + pages = ram_find_and_save_block(rs, false);
> /* no more pages to sent */
> if (pages == 0) {
> done = 1;
> @@ -2167,7 +2157,7 @@ static int ram_save_iterate(QEMUFile *f, void *opaque)
> }
> i++;
> }
> - flush_compressed_data(rs, f);
> + flush_compressed_data(rs);
> rcu_read_unlock();
>
> /*
> @@ -2215,14 +2205,14 @@ static int ram_save_complete(QEMUFile *f, void *opaque)
> while (true) {
> int pages;
>
> - pages = ram_find_and_save_block(rs, f, !migration_in_colo_state());
> + pages = ram_find_and_save_block(rs, !migration_in_colo_state());
> /* no more blocks to sent */
> if (pages == 0) {
> break;
> }
> }
>
> - flush_compressed_data(rs, f);
> + flush_compressed_data(rs);
> ram_control_after_iterate(f, RAM_CONTROL_FINISH);
>
> rcu_read_unlock();
> --
> 2.9.3
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2017-03-31 14:21 UTC|newest]
Thread overview: 167+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-23 20:44 [Qemu-devel] [PATCH v2 00/51] Creating RAMState for migration Juan Quintela
2017-03-23 20:44 ` [Qemu-devel] [PATCH 01/51] ram: Update all functions comments Juan Quintela
2017-03-24 9:55 ` Peter Xu
2017-03-24 11:44 ` Juan Quintela
2017-03-26 13:43 ` Peter Xu
2017-03-28 18:32 ` Juan Quintela
2017-03-31 14:43 ` Dr. David Alan Gilbert
2017-04-03 20:40 ` Juan Quintela
2017-03-31 15:51 ` Dr. David Alan Gilbert
2017-04-04 17:12 ` Juan Quintela
2017-03-23 20:44 ` [Qemu-devel] [PATCH 02/51] ram: rename block_name to rbname Juan Quintela
2017-03-24 11:11 ` Dr. David Alan Gilbert
2017-03-24 17:15 ` Eric Blake
2017-03-28 10:52 ` Juan Quintela
2017-03-23 20:44 ` [Qemu-devel] [PATCH 03/51] ram: Create RAMState Juan Quintela
2017-03-27 4:43 ` Peter Xu
2017-03-23 20:44 ` [Qemu-devel] [PATCH 04/51] ram: Add dirty_rate_high_cnt to RAMState Juan Quintela
2017-03-27 7:24 ` Peter Xu
2017-03-23 20:44 ` [Qemu-devel] [PATCH 05/51] ram: Move bitmap_sync_count into RAMState Juan Quintela
2017-03-27 7:34 ` Peter Xu
2017-03-28 10:56 ` Juan Quintela
2017-03-29 6:55 ` Peter Xu
2017-03-29 8:56 ` Juan Quintela
2017-03-29 9:07 ` Peter Xu
2017-03-23 20:44 ` [Qemu-devel] [PATCH 06/51] ram: Move start time " Juan Quintela
2017-03-27 7:54 ` Peter Xu
2017-03-28 11:00 ` Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 07/51] ram: Move bytes_xfer_prev " Juan Quintela
2017-03-27 8:04 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 08/51] ram: Move num_dirty_pages_period " Juan Quintela
2017-03-27 8:07 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 09/51] ram: Move xbzrle_cache_miss_prev " Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 10/51] ram: Move iterations_prev " Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 11/51] ram: Move dup_pages " Juan Quintela
2017-03-27 9:23 ` Peter Xu
2017-03-28 18:43 ` Juan Quintela
2017-03-29 7:02 ` Peter Xu
2017-03-29 8:26 ` Juan Quintela
2017-03-31 14:58 ` Dr. David Alan Gilbert
2017-03-23 20:45 ` [Qemu-devel] [PATCH 12/51] ram: Remove unused dup_mig_bytes_transferred() Juan Quintela
2017-03-27 9:24 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 13/51] ram: Remove unused pages_skipped variable Juan Quintela
2017-03-27 9:26 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 14/51] ram: Move norm_pages to RAMState Juan Quintela
2017-03-27 9:43 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 15/51] ram: Remove norm_mig_bytes_transferred Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 16/51] ram: Move iterations into RAMState Juan Quintela
2017-03-27 10:46 ` Peter Xu
2017-03-28 18:34 ` Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 17/51] ram: Move xbzrle_bytes " Juan Quintela
2017-03-24 10:12 ` Dr. David Alan Gilbert
2017-03-27 10:48 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 18/51] ram: Move xbzrle_pages " Juan Quintela
2017-03-24 10:13 ` Dr. David Alan Gilbert
2017-03-27 10:59 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 19/51] ram: Move xbzrle_cache_miss " Juan Quintela
2017-03-24 10:15 ` Dr. David Alan Gilbert
2017-03-27 11:00 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 20/51] ram: Move xbzrle_cache_miss_rate " Juan Quintela
2017-03-24 10:17 ` Dr. David Alan Gilbert
2017-03-27 11:01 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 21/51] ram: Move xbzrle_overflows " Juan Quintela
2017-03-24 10:22 ` Dr. David Alan Gilbert
2017-03-27 11:03 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 22/51] ram: Move migration_dirty_pages to RAMState Juan Quintela
2017-03-30 6:24 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 23/51] ram: Everything was init to zero, so use memset Juan Quintela
2017-03-29 17:14 ` Dr. David Alan Gilbert
2017-03-30 6:25 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 24/51] ram: Move migration_bitmap_mutex into RAMState Juan Quintela
2017-03-30 6:25 ` Peter Xu
2017-03-30 8:49 ` Dr. David Alan Gilbert
2017-03-23 20:45 ` [Qemu-devel] [PATCH 25/51] ram: Move migration_bitmap_rcu " Juan Quintela
2017-03-30 6:25 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 26/51] ram: Move bytes_transferred " Juan Quintela
2017-03-29 17:38 ` Dr. David Alan Gilbert
2017-03-30 6:26 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 27/51] ram: Use the RAMState bytes_transferred parameter Juan Quintela
2017-03-30 6:27 ` Peter Xu
2017-03-30 16:05 ` Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 28/51] ram: Remove ram_save_remaining Juan Quintela
2017-03-24 15:34 ` Dr. David Alan Gilbert
2017-03-30 6:24 ` Peter Xu
2017-03-30 16:07 ` Juan Quintela
2017-03-31 2:57 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 29/51] ram: Move last_req_rb to RAMState Juan Quintela
2017-03-30 6:49 ` Peter Xu
2017-03-30 16:08 ` Juan Quintela
2017-03-31 3:00 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 30/51] ram: Move src_page_req* " Juan Quintela
2017-03-30 6:56 ` Peter Xu
2017-03-30 16:09 ` Juan Quintela
2017-03-31 15:25 ` Dr. David Alan Gilbert
2017-04-01 7:15 ` Peter Xu
2017-04-05 10:27 ` Dr. David Alan Gilbert
2017-03-31 16:52 ` Dr. David Alan Gilbert
2017-04-04 17:42 ` Juan Quintela
2017-04-05 10:34 ` Dr. David Alan Gilbert
2017-03-23 20:45 ` [Qemu-devel] [PATCH 31/51] ram: Create ram_dirty_sync_count() Juan Quintela
2017-03-29 9:06 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 32/51] ram: Remove dirty_bytes_rate Juan Quintela
2017-03-30 7:00 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 33/51] ram: Move dirty_pages_rate to RAMState Juan Quintela
2017-03-30 7:04 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 34/51] ram: Move postcopy_requests into RAMState Juan Quintela
2017-03-30 7:06 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 35/51] ram: Add QEMUFile to RAMState Juan Quintela
2017-03-24 10:52 ` Dr. David Alan Gilbert
2017-03-24 11:14 ` Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 36/51] ram: Move QEMUFile into RAMState Juan Quintela
2017-03-31 14:21 ` Dr. David Alan Gilbert [this message]
2017-03-23 20:45 ` [Qemu-devel] [PATCH 37/51] ram: Move compression_switch to RAMState Juan Quintela
2017-03-29 18:02 ` Dr. David Alan Gilbert
2017-03-30 16:19 ` Juan Quintela
2017-03-30 16:27 ` Juan Quintela
2017-03-30 7:52 ` Peter Xu
2017-03-30 16:30 ` Juan Quintela
2017-03-31 3:04 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 38/51] migration: Remove MigrationState from migration_in_postcopy Juan Quintela
2017-03-24 15:27 ` Dr. David Alan Gilbert
2017-03-30 8:06 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 39/51] ram: We don't need MigrationState parameter anymore Juan Quintela
2017-03-24 15:28 ` Dr. David Alan Gilbert
2017-03-30 8:05 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 40/51] ram: Rename qemu_target_page_bits() to qemu_target_page_size() Juan Quintela
2017-03-24 15:32 ` Dr. David Alan Gilbert
2017-03-30 8:03 ` Peter Xu
2017-03-30 8:55 ` Dr. David Alan Gilbert
2017-03-30 9:11 ` Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 41/51] Add page-size to output in 'info migrate' Juan Quintela
2017-03-24 17:17 ` Eric Blake
2017-03-23 20:45 ` [Qemu-devel] [PATCH 42/51] ram: Pass RAMBlock to bitmap_sync Juan Quintela
2017-03-24 1:10 ` Yang Hongyang
2017-03-24 8:29 ` Juan Quintela
2017-03-24 9:11 ` Yang Hongyang
2017-03-24 10:05 ` Juan Quintela
2017-03-28 17:12 ` Dr. David Alan Gilbert
2017-03-28 18:45 ` Juan Quintela
2017-03-30 9:07 ` Dr. David Alan Gilbert
2017-03-30 11:38 ` Juan Quintela
2017-03-30 19:10 ` Dr. David Alan Gilbert
2017-04-04 17:46 ` Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 43/51] ram: ram_discard_range() don't use the mis parameter Juan Quintela
2017-03-29 18:43 ` Dr. David Alan Gilbert
2017-03-30 10:28 ` Peter Xu
2017-03-23 20:45 ` [Qemu-devel] [PATCH 44/51] ram: reorganize last_sent_block Juan Quintela
2017-03-31 8:35 ` Peter Xu
2017-03-31 8:40 ` Dr. David Alan Gilbert
2017-03-23 20:45 ` [Qemu-devel] [PATCH 45/51] ram: Use page number instead of an address for the bitmap operations Juan Quintela
2017-03-31 12:22 ` Dr. David Alan Gilbert
2017-04-04 18:21 ` Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 46/51] ram: Remember last_page instead of last_offset Juan Quintela
2017-03-31 9:09 ` Dr. David Alan Gilbert
2017-04-04 18:24 ` Juan Quintela
2017-03-23 20:45 ` [Qemu-devel] [PATCH 47/51] ram: Change offset field in PageSearchStatus to page Juan Quintela
2017-03-31 12:31 ` Dr. David Alan Gilbert
2017-03-23 20:45 ` [Qemu-devel] [PATCH 48/51] ram: Use ramblock and page offset instead of absolute offset Juan Quintela
2017-03-31 17:17 ` Dr. David Alan Gilbert
2017-03-23 20:45 ` [Qemu-devel] [PATCH 49/51] ram: rename last_ram_offset() last_ram_pages() Juan Quintela
2017-03-31 14:23 ` Dr. David Alan Gilbert
2017-03-23 20:45 ` [Qemu-devel] [PATCH 50/51] ram: Use RAMBitmap type for coherence Juan Quintela
2017-03-31 14:27 ` Dr. David Alan Gilbert
2017-03-23 20:45 ` [Qemu-devel] [PATCH 51/51] migration: Remove MigrationState parameter from migration_is_idle() Juan Quintela
2017-03-24 16:38 ` Dr. David Alan Gilbert
2017-03-31 14:34 ` [Qemu-devel] [PATCH v2 00/51] Creating RAMState for migration Dr. David Alan Gilbert
2017-04-04 17:22 ` Juan Quintela
2017-04-04 17:36 ` Dr. David Alan Gilbert
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=20170331142109.GG4514@work-vm \
--to=dgilbert@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
/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).