Skip to content

Commit

Permalink
block-migration: fix pending() and iterate() return values
Browse files Browse the repository at this point in the history
The return value of .save_live_pending() is the number of bytes
remaining.  This is just an estimate because we do not know how many
blocks will be dirtied by the running guest.

Currently our return value for .save_live_pending() is wrong because it
includes dirty blocks but not in-flight bdrv_aio_readv() requests or
unsent blocks.  Crucially, it also doesn't include the bulk phase where
the entire device is transferred - therefore we risk completing block
migration before all blocks have been transferred!

The return value of .save_live_iterate() is the number of bytes
transferred this iteration.  Currently we return whether there are bytes
remaining, which is incorrect.

Move the bytes remaining calculation into .save_live_pending() and
really return the number of bytes transferred this iteration in
.save_live_iterate().

Also fix the %ld format specifier which was used for a uint64_t
argument.  PRIu64 must be use to avoid warnings on 32-bit hosts.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Message-id: 1360661835-28663-3-git-send-email-stefanha@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
  • Loading branch information
stefanhaRH authored and Anthony Liguori committed Feb 12, 2013
1 parent ad55ab4 commit 6aaa9da
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions block-migration.c
Expand Up @@ -539,6 +539,7 @@ static int block_save_setup(QEMUFile *f, void *opaque)
static int block_save_iterate(QEMUFile *f, void *opaque)
{
int ret;
int64_t last_ftell = qemu_ftell(f);

DPRINTF("Enter save live iterate submitted %d transferred %d\n",
block_mig_state.submitted, block_mig_state.transferred);
Expand Down Expand Up @@ -582,12 +583,7 @@ static int block_save_iterate(QEMUFile *f, void *opaque)

qemu_put_be64(f, BLK_MIG_FLAG_EOS);

/* Complete when bulk transfer is done and all dirty blocks have been
* transferred.
*/
return block_mig_state.bulk_completed &&
block_mig_state.submitted == 0 &&
block_mig_state.read_done == 0;
return qemu_ftell(f) - last_ftell;
}

static int block_save_complete(QEMUFile *f, void *opaque)
Expand Down Expand Up @@ -629,10 +625,18 @@ static int block_save_complete(QEMUFile *f, void *opaque)

static uint64_t block_save_pending(QEMUFile *f, void *opaque, uint64_t max_size)
{
/* Estimate pending number of bytes to send */
uint64_t pending = get_remaining_dirty() +
block_mig_state.submitted * BLOCK_SIZE +
block_mig_state.read_done * BLOCK_SIZE;

/* Report at least one block pending during bulk phase */
if (pending == 0 && !block_mig_state.bulk_completed) {
pending = BLOCK_SIZE;
}

DPRINTF("Enter save live pending %ld\n", get_remaining_dirty());

return get_remaining_dirty();
DPRINTF("Enter save live pending %" PRIu64 "\n", pending);
return pending;
}

static int block_load(QEMUFile *f, void *opaque, int version_id)
Expand Down

0 comments on commit 6aaa9da

Please sign in to comment.