Skip to content

Commit

Permalink
savevm: make qemu_fflush() return an error code
Browse files Browse the repository at this point in the history
Adjust all the callers.  We moved the set of last_error from inside
qemu_fflush() to all the callers.

Signed-off-by: Juan Quintela <quintela@redhat.com>

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
Juan Quintela committed Oct 17, 2012
1 parent e5ae97c commit 7311bea
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions savevm.c
Expand Up @@ -459,23 +459,22 @@ static void qemu_file_set_if_error(QEMUFile *f, int ret)

/** Flushes QEMUFile buffer
*
* In case of error, last_error is set.
*/
static void qemu_fflush(QEMUFile *f)
static int qemu_fflush(QEMUFile *f)
{
int ret = 0;

if (!f->put_buffer)
return;
return 0;

if (f->is_write && f->buf_index > 0) {
int len;

len = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
if (len > 0)
ret = f->put_buffer(f->opaque, f->buf, f->buf_offset, f->buf_index);
if (ret >= 0) {
f->buf_offset += f->buf_index;
else
qemu_file_set_error(f, -EINVAL);
}
f->buf_index = 0;
}
return ret;
}

static void qemu_fill_buffer(QEMUFile *f)
Expand Down Expand Up @@ -533,9 +532,13 @@ static int qemu_fclose_internal(QEMUFile *f)
*/
int qemu_fclose(QEMUFile *f)
{
int ret;
qemu_fflush(f);
ret = qemu_fclose_internal(f);
int ret, ret2;
ret = qemu_fflush(f);
ret2 = qemu_fclose_internal(f);

if (ret >= 0) {
ret = ret2;
}
/* If any error was spotted before closing, we should report it
* instead of the close() return value.
*/
Expand Down Expand Up @@ -570,8 +573,10 @@ void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
f->buf_index += l;
buf += l;
size -= l;
if (f->buf_index >= IO_BUF_SIZE)
qemu_fflush(f);
if (f->buf_index >= IO_BUF_SIZE) {
int ret = qemu_fflush(f);
qemu_file_set_if_error(f, ret);
}
}
}

Expand All @@ -585,8 +590,10 @@ void qemu_put_byte(QEMUFile *f, int v)

f->buf[f->buf_index++] = v;
f->is_write = 1;
if (f->buf_index >= IO_BUF_SIZE)
qemu_fflush(f);
if (f->buf_index >= IO_BUF_SIZE) {
int ret = qemu_fflush(f);
qemu_file_set_if_error(f, ret);
}
}

static void qemu_file_skip(QEMUFile *f, int size)
Expand Down

0 comments on commit 7311bea

Please sign in to comment.