Skip to content

Commit

Permalink
migration: change has_error to contain errno values
Browse files Browse the repository at this point in the history
We normally already have an errno value.  When not, abuse EIO.

Signed-off-by: Juan Quintela <quintela@redhat.com>
  • Loading branch information
Juan Quintela committed Oct 20, 2011
1 parent af50945 commit dcd1d22
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion arch_init.c
Expand Up @@ -263,7 +263,7 @@ int ram_save_live(Monitor *mon, QEMUFile *f, int stage, void *opaque)
}

if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX) != 0) {
qemu_file_set_error(f);
qemu_file_set_error(f, -EINVAL);
return 0;
}

Expand Down
11 changes: 6 additions & 5 deletions block-migration.c
Expand Up @@ -263,7 +263,7 @@ static int mig_save_device_bulk(Monitor *mon, QEMUFile *f,

error:
monitor_printf(mon, "Error reading sector %" PRId64 "\n", cur_sector);
qemu_file_set_error(f);
qemu_file_set_error(f, -EIO);
g_free(blk->buf);
g_free(blk);
return 0;
Expand Down Expand Up @@ -383,6 +383,7 @@ static int mig_save_device_dirty(Monitor *mon, QEMUFile *f,
int64_t total_sectors = bmds->total_sectors;
int64_t sector;
int nr_sectors;
int ret = -EIO;

for (sector = bmds->cur_dirty; sector < bmds->total_sectors;) {
if (bmds_aio_inflight(bmds, sector)) {
Expand Down Expand Up @@ -418,8 +419,8 @@ static int mig_save_device_dirty(Monitor *mon, QEMUFile *f,
block_mig_state.submitted++;
bmds_set_aio_inflight(bmds, sector, nr_sectors, 1);
} else {
if (bdrv_read(bmds->bs, sector, blk->buf,
nr_sectors) < 0) {
ret = bdrv_read(bmds->bs, sector, blk->buf, nr_sectors);
if (ret < 0) {
goto error;
}
blk_send(f, blk);
Expand All @@ -439,7 +440,7 @@ static int mig_save_device_dirty(Monitor *mon, QEMUFile *f,

error:
monitor_printf(mon, "Error reading sector %" PRId64 "\n", sector);
qemu_file_set_error(f);
qemu_file_set_error(f, ret);
g_free(blk->buf);
g_free(blk);
return 0;
Expand Down Expand Up @@ -473,7 +474,7 @@ static void flush_blks(QEMUFile* f)
break;
}
if (blk->ret < 0) {
qemu_file_set_error(f);
qemu_file_set_error(f, blk->ret);
break;
}
blk_send(f, blk);
Expand Down
4 changes: 2 additions & 2 deletions buffered_file.c
Expand Up @@ -92,7 +92,7 @@ static void buffered_flush(QEMUFileBuffered *s)

if (ret <= 0) {
DPRINTF("error flushing data, %zd\n", ret);
qemu_file_set_error(s->file);
qemu_file_set_error(s->file, ret);
break;
} else {
DPRINTF("flushed %zd byte(s)\n", ret);
Expand Down Expand Up @@ -138,7 +138,7 @@ static int buffered_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, in

if (ret <= 0) {
DPRINTF("error putting\n");
qemu_file_set_error(s->file);
qemu_file_set_error(s->file, ret);
offset = -EINVAL;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion hw/hw.h
Expand Up @@ -86,7 +86,7 @@ int qemu_file_rate_limit(QEMUFile *f);
int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate);
int64_t qemu_file_get_rate_limit(QEMUFile *f);
int qemu_file_has_error(QEMUFile *f);
void qemu_file_set_error(QEMUFile *f);
void qemu_file_set_error(QEMUFile *f, int error);

/* Try to send any outstanding data. This function is useful when output is
* halted due to rate limiting or EAGAIN errors occur as it can be used to
Expand Down
2 changes: 1 addition & 1 deletion migration.c
Expand Up @@ -455,7 +455,7 @@ void migrate_fd_wait_for_unfreeze(void *opaque)
} while (ret == -1 && (s->get_error(s)) == EINTR);

if (ret == -1) {
qemu_file_set_error(s->file);
qemu_file_set_error(s->file, -s->get_error(s));
}
}

Expand Down
8 changes: 4 additions & 4 deletions savevm.c
Expand Up @@ -430,9 +430,9 @@ int qemu_file_has_error(QEMUFile *f)
return f->has_error;
}

void qemu_file_set_error(QEMUFile *f)
void qemu_file_set_error(QEMUFile *f, int ret)
{
f->has_error = 1;
f->has_error = ret;
}

void qemu_fflush(QEMUFile *f)
Expand All @@ -447,7 +447,7 @@ void qemu_fflush(QEMUFile *f)
if (len > 0)
f->buf_offset += f->buf_index;
else
f->has_error = 1;
f->has_error = -EINVAL;
f->buf_index = 0;
}
}
Expand Down Expand Up @@ -476,7 +476,7 @@ static void qemu_fill_buffer(QEMUFile *f)
f->buf_size += len;
f->buf_offset += len;
} else if (len != -EAGAIN)
f->has_error = 1;
f->has_error = len;
}

int qemu_fclose(QEMUFile *f)
Expand Down

0 comments on commit dcd1d22

Please sign in to comment.